mirror of
https://github.com/zeldaret/tp
synced 2026-08-28 00:41:50 -04:00
ok
This commit is contained in:
+19
@@ -0,0 +1,19 @@
|
||||
# Compiler binaries
|
||||
mwcc_compiler/
|
||||
|
||||
# Build artifacts
|
||||
build/
|
||||
*.o
|
||||
*.elf
|
||||
*.map
|
||||
*.dol
|
||||
|
||||
# Temporary files
|
||||
*.swp
|
||||
*.dump
|
||||
|
||||
# IDE
|
||||
.vscode/
|
||||
|
||||
# ASM
|
||||
new.asm
|
||||
@@ -0,0 +1,119 @@
|
||||
ifneq ($(findstring MINGW,$(shell uname)),)
|
||||
WINDOWS := 1
|
||||
endif
|
||||
ifneq ($(findstring MSYS,$(shell uname)),)
|
||||
WINDOWS := 1
|
||||
endif
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
# Files
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
TARGET_COL := wii
|
||||
|
||||
TARGET := dolzel2
|
||||
|
||||
BUILD_DIR := build/$(TARGET)
|
||||
|
||||
SRC_DIRS := src
|
||||
ASM_DIRS := asm
|
||||
|
||||
# Inputs
|
||||
LDSCRIPT := $(BUILD_DIR)/ldscript.lcf
|
||||
|
||||
# Outputs
|
||||
DOL := $(BUILD_DIR)/main.dol
|
||||
ELF := $(DOL:.dol=.elf)
|
||||
MAP := $(BUILD_DIR)/dolzel2.map
|
||||
|
||||
include obj_files.mk
|
||||
|
||||
O_FILES := $(INIT_O_FILES) $(EXTAB_O_FILES) $(EXTABINDEX_O_FILES) $(TEXT_O_FILES) \
|
||||
$(CTORS_O_FILES) $(DTORS_O_FILES) $(RODATA_O_FILES) $(DATA_O_FILES) \
|
||||
$(BSS_O_FILES) $(SDATA_O_FILES) $(SBSS_O_FILES) \
|
||||
$(SDATA2_O_FILES) $(SBSS2_O_FILES)
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
# Tools
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
MWCC_VERSION := 1.2.5
|
||||
|
||||
# Programs
|
||||
ifeq ($(WINDOWS),1)
|
||||
WINE :=
|
||||
else
|
||||
WINE := wine
|
||||
endif
|
||||
AS := $(DEVKITPPC)/bin/powerpc-eabi-as
|
||||
OBJCOPY := $(DEVKITPPC)/bin/powerpc-eabi-objcopy
|
||||
CPP := cpp -P
|
||||
CC := $(WINE) tools/mwcc_compiler/$(MWCC_VERSION)/mwcceppc.exe
|
||||
LD := $(WINE) tools/mwcc_compiler/$(MWCC_VERSION)/mwldeppc.exe
|
||||
ELF2DOL := tools/elf2dol
|
||||
SHA1SUM := sha1sum
|
||||
PYTHON := python3
|
||||
|
||||
POSTPROC := tools/postprocess.py
|
||||
|
||||
# Options
|
||||
INCLUDES := -i include -i include/dolphin/ -i include/dolphin/mtx/ -i src -i src/msl -i src/msl/ppc_eabi -i src/runtime/ -i src/sysdolphin/
|
||||
|
||||
ASFLAGS := -mgekko -I include
|
||||
LDFLAGS := -map $(MAP) -fp hard -nodefaults -w off
|
||||
CFLAGS := -Cpp_exceptions off -proc gekko -fp hard -O4,p -nodefaults -msgstyle gcc $(INCLUDES)
|
||||
|
||||
# for postprocess.py
|
||||
PROCFLAGS := -fprologue-fixup=old_stack
|
||||
|
||||
# elf2dol needs to know these in order to calculate sbss correctly.
|
||||
SDATA_PDHR := 9
|
||||
SBSS_PDHR := 10
|
||||
|
||||
#-------------------------------------------------------------------------------
|
||||
# Recipes
|
||||
#-------------------------------------------------------------------------------
|
||||
|
||||
### Default target ###
|
||||
|
||||
default: all
|
||||
|
||||
all: $(DOL)
|
||||
|
||||
ALL_DIRS := build $(BUILD_DIR) $(addprefix $(BUILD_DIR)/,$(SRC_DIRS) $(ASM_DIRS))
|
||||
|
||||
# Make sure build directory exists before compiling anything
|
||||
DUMMY != mkdir -p $(ALL_DIRS)
|
||||
|
||||
.PHONY: tools
|
||||
|
||||
$(LDSCRIPT): ldscript.lcf
|
||||
$(CPP) -MMD -MP -MT $@ -MF $@.d -I include/ -I . -DBUILD_DIR=$(BUILD_DIR) -o $@ $<
|
||||
|
||||
$(DOL): $(ELF) | tools
|
||||
$(ELF2DOL) $< $@ $(SDATA_PDHR) $(SBSS_PDHR) $(TARGET_COL)
|
||||
$(SHA1SUM) -c $(TARGET).sha1
|
||||
|
||||
clean:
|
||||
rm -f -d -r build
|
||||
$(MAKE) -C tools clean
|
||||
|
||||
tools:
|
||||
$(MAKE) -C tools
|
||||
|
||||
$(ELF): $(O_FILES) $(LDSCRIPT)
|
||||
$(LD) $(LDFLAGS) -o $@ -lcf $(LDSCRIPT) $(O_FILES)
|
||||
# The Metrowerks linker doesn't generate physical addresses in the ELF program headers. This fixes it somehow.
|
||||
$(OBJCOPY) $@ $@
|
||||
|
||||
$(BUILD_DIR)/%.o: %.s
|
||||
$(AS) $(ASFLAGS) -o $@ $<
|
||||
|
||||
$(BUILD_DIR)/%.o: %.c
|
||||
$(CC) $(CFLAGS) -c -o $@ $<
|
||||
# TODO: See if this is necessary after actually adding some C code
|
||||
# $(PYTHON) $(POSTPROC) $(PROCFLAGS) $@
|
||||
|
||||
### Debug Print ###
|
||||
|
||||
print-% : ; $(info $* is a $(flavor $*) variable set to [$($*)]) @true
|
||||
@@ -0,0 +1,27 @@
|
||||
# The Legend of Zelda: Twilight Princess
|
||||
|
||||
This repo contains a WIP decompilation of The Legend of Zelda: Twilight Princess (GCN USA).
|
||||
|
||||
It builds the following DOL:
|
||||
|
||||
main.dol - `sha1: 4997D93B9692620C40E90374A0F1DBF0E4889395`
|
||||
|
||||
And will eventually build all the [RELs](./rels_sha1.md).
|
||||
|
||||
## Windows Prerequisites
|
||||
|
||||
1. Download and run the latest release of the [Windows devkitpro installer](https://github.com/devkitPro/installer/releases)
|
||||
2. Run the executable located at `devkitPro\msys2\msys2.exe`
|
||||
3. Update pacman by running the following command: `pacman -Syu`
|
||||
4. Install the necessary dependencies by running the following command: `pacman -S python3-pip base-devel gcc vim cmake`
|
||||
5. Change to the directory of where you cloned this repository and you are ready to build!
|
||||
|
||||
## Build Instructions
|
||||
|
||||
1. Obtain a clean DOL of TP (GCN USA) and place it at the root of the repo and name it `baserom.dol`.
|
||||
2. Obtain a copy of the MWCC PowerPC (from GC CW 3.0) and place it in tools/mwcc_compiler/3.0/ folder in tools/. (NOTE: This compiler's executables [mwcceppc.exe mwasmeppc.exe and mwldeppc.exe] can be installed with Codewarrior 3.0 for Gamecube, but no license or crack is provided with this project. If you can't find it on your own just DM me Pheenoh#0001).
|
||||
4. Run `make` at the root of the repo
|
||||
|
||||
## Contributions
|
||||
|
||||
Contributions and PRs are welcome.
|
||||
@@ -0,0 +1,4 @@
|
||||
.section .ctors, "wa" # 0x803737C0 - 0x80373980
|
||||
.global lbl_803737C0
|
||||
lbl_803737C0:
|
||||
.incbin "baserom.dol", 0x3707C0, 0x1C0
|
||||
+3874
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,4 @@
|
||||
.section .dtors, "wa" # 0x80373980 - 0x803739A0
|
||||
.global lbl_80373980
|
||||
lbl_80373980:
|
||||
.incbin "baserom.dol", 0x370980, 0x20
|
||||
@@ -0,0 +1,3 @@
|
||||
.section extab_, "wa" # 0x80005600 - 0x80005660
|
||||
.incbin "baserom.dol", 0x370700, 0x60
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
.section extabindex_, "wa" # 0x80005660 - 0x800056BC
|
||||
.incbin "baserom.dol", 0x370760, 0x3C
|
||||
.global lbl_8000569C
|
||||
lbl_8000569C:
|
||||
.incbin "baserom.dol", 0x37079C, 0x24
|
||||
+2458
File diff suppressed because it is too large
Load Diff
+1739
File diff suppressed because it is too large
Load Diff
+2575
File diff suppressed because it is too large
Load Diff
+67
@@ -0,0 +1,67 @@
|
||||
.include "macros.inc"
|
||||
|
||||
.section .sbss2, "a" # 0x80456B60 - 0x80456BC8
|
||||
|
||||
.global lbl_80456B60
|
||||
lbl_80456B60:
|
||||
.skip 0x8
|
||||
.global lbl_80456B68
|
||||
lbl_80456B68:
|
||||
.skip 0x8
|
||||
.global lbl_80456B70
|
||||
lbl_80456B70:
|
||||
.skip 0x8
|
||||
.global lbl_80456B78
|
||||
lbl_80456B78:
|
||||
.skip 0x8
|
||||
.global lbl_80456B80
|
||||
lbl_80456B80:
|
||||
.skip 0x4
|
||||
.global lbl_80456B84
|
||||
lbl_80456B84:
|
||||
.skip 0x4
|
||||
.global lbl_80456B88
|
||||
lbl_80456B88:
|
||||
.skip 0x8
|
||||
.global lbl_80456B90
|
||||
lbl_80456B90:
|
||||
.skip 0x4
|
||||
.global lbl_80456B94
|
||||
lbl_80456B94:
|
||||
.skip 0x4
|
||||
.global lbl_80456B98
|
||||
lbl_80456B98:
|
||||
.skip 0x4
|
||||
.global lbl_80456B9C
|
||||
lbl_80456B9C:
|
||||
.skip 0x4
|
||||
.global lbl_80456BA0
|
||||
lbl_80456BA0:
|
||||
.skip 0x4
|
||||
.global lbl_80456BA4
|
||||
lbl_80456BA4:
|
||||
.skip 0x4
|
||||
.global lbl_80456BA8
|
||||
lbl_80456BA8:
|
||||
.skip 0x4
|
||||
.global lbl_80456BAC
|
||||
lbl_80456BAC:
|
||||
.skip 0x4
|
||||
.global lbl_80456BB0
|
||||
lbl_80456BB0:
|
||||
.skip 0x4
|
||||
.global lbl_80456BB4
|
||||
lbl_80456BB4:
|
||||
.skip 0x4
|
||||
.global lbl_80456BB8
|
||||
lbl_80456BB8:
|
||||
.skip 0x4
|
||||
.global lbl_80456BBC
|
||||
lbl_80456BBC:
|
||||
.skip 0x4
|
||||
.global lbl_80456BC0
|
||||
lbl_80456BC0:
|
||||
.skip 0x4
|
||||
.global lbl_80456BC4
|
||||
lbl_80456BC4:
|
||||
.skip 0x4
|
||||
+793
@@ -0,0 +1,793 @@
|
||||
.section .sdata, "wa" # 0x80450580 - 0x80450B08
|
||||
.global lbl_80450580
|
||||
lbl_80450580:
|
||||
.incbin "baserom.dol", 0x3D02E0, 0x4
|
||||
.global lbl_80450584
|
||||
lbl_80450584:
|
||||
.incbin "baserom.dol", 0x3D02E4, 0x4
|
||||
.global lbl_80450588
|
||||
lbl_80450588:
|
||||
.incbin "baserom.dol", 0x3D02E8, 0x8
|
||||
.global lbl_80450590
|
||||
lbl_80450590:
|
||||
.incbin "baserom.dol", 0x3D02F0, 0x4
|
||||
.global lbl_80450594
|
||||
lbl_80450594:
|
||||
.incbin "baserom.dol", 0x3D02F4, 0x4
|
||||
.global lbl_80450598
|
||||
lbl_80450598:
|
||||
.incbin "baserom.dol", 0x3D02F8, 0x4
|
||||
.global lbl_8045059C
|
||||
lbl_8045059C:
|
||||
.incbin "baserom.dol", 0x3D02FC, 0x4
|
||||
.global lbl_804505A0
|
||||
lbl_804505A0:
|
||||
.incbin "baserom.dol", 0x3D0300, 0x8
|
||||
.global lbl_804505A8
|
||||
lbl_804505A8:
|
||||
.incbin "baserom.dol", 0x3D0308, 0x4
|
||||
.global lbl_804505AC
|
||||
lbl_804505AC:
|
||||
.incbin "baserom.dol", 0x3D030C, 0x4
|
||||
.global lbl_804505B0
|
||||
lbl_804505B0:
|
||||
.incbin "baserom.dol", 0x3D0310, 0x8
|
||||
.global lbl_804505B8
|
||||
lbl_804505B8:
|
||||
.incbin "baserom.dol", 0x3D0318, 0x8
|
||||
.global lbl_804505C0
|
||||
lbl_804505C0:
|
||||
.incbin "baserom.dol", 0x3D0320, 0x8
|
||||
.global lbl_804505C8
|
||||
lbl_804505C8:
|
||||
.incbin "baserom.dol", 0x3D0328, 0x8
|
||||
.global lbl_804505D0
|
||||
lbl_804505D0:
|
||||
.incbin "baserom.dol", 0x3D0330, 0x8
|
||||
.global lbl_804505D8
|
||||
lbl_804505D8:
|
||||
.incbin "baserom.dol", 0x3D0338, 0x8
|
||||
.global lbl_804505E0
|
||||
lbl_804505E0:
|
||||
.incbin "baserom.dol", 0x3D0340, 0x8
|
||||
.global lbl_804505E8
|
||||
lbl_804505E8:
|
||||
.incbin "baserom.dol", 0x3D0348, 0x8
|
||||
.global lbl_804505F0
|
||||
lbl_804505F0:
|
||||
.incbin "baserom.dol", 0x3D0350, 0x8
|
||||
.global lbl_804505F8
|
||||
lbl_804505F8:
|
||||
.incbin "baserom.dol", 0x3D0358, 0x8
|
||||
.global lbl_80450600
|
||||
lbl_80450600:
|
||||
.incbin "baserom.dol", 0x3D0360, 0x4
|
||||
.global lbl_80450604
|
||||
lbl_80450604:
|
||||
.incbin "baserom.dol", 0x3D0364, 0x4
|
||||
.global lbl_80450608
|
||||
lbl_80450608:
|
||||
.incbin "baserom.dol", 0x3D0368, 0x4
|
||||
.global lbl_8045060C
|
||||
lbl_8045060C:
|
||||
.incbin "baserom.dol", 0x3D036C, 0x4
|
||||
.global lbl_80450610
|
||||
lbl_80450610:
|
||||
.incbin "baserom.dol", 0x3D0370, 0x8
|
||||
.global lbl_80450618
|
||||
lbl_80450618:
|
||||
.incbin "baserom.dol", 0x3D0378, 0x8
|
||||
.global lbl_80450620
|
||||
lbl_80450620:
|
||||
.incbin "baserom.dol", 0x3D0380, 0x8
|
||||
.global lbl_80450628
|
||||
lbl_80450628:
|
||||
.incbin "baserom.dol", 0x3D0388, 0x4
|
||||
.global lbl_8045062C
|
||||
lbl_8045062C:
|
||||
.incbin "baserom.dol", 0x3D038C, 0x4
|
||||
.global lbl_80450630
|
||||
lbl_80450630:
|
||||
.incbin "baserom.dol", 0x3D0390, 0x4
|
||||
.global lbl_80450634
|
||||
lbl_80450634:
|
||||
.incbin "baserom.dol", 0x3D0394, 0x1
|
||||
.global lbl_80450635
|
||||
lbl_80450635:
|
||||
.incbin "baserom.dol", 0x3D0395, 0x1
|
||||
.global lbl_80450636
|
||||
lbl_80450636:
|
||||
.incbin "baserom.dol", 0x3D0396, 0x2
|
||||
.global lbl_80450638
|
||||
lbl_80450638:
|
||||
.incbin "baserom.dol", 0x3D0398, 0x8
|
||||
.global lbl_80450640
|
||||
lbl_80450640:
|
||||
.incbin "baserom.dol", 0x3D03A0, 0x8
|
||||
.global lbl_80450648
|
||||
lbl_80450648:
|
||||
.incbin "baserom.dol", 0x3D03A8, 0x4
|
||||
.global lbl_8045064C
|
||||
lbl_8045064C:
|
||||
.incbin "baserom.dol", 0x3D03AC, 0x4
|
||||
.global lbl_80450650
|
||||
lbl_80450650:
|
||||
.incbin "baserom.dol", 0x3D03B0, 0x4
|
||||
.global lbl_80450654
|
||||
lbl_80450654:
|
||||
.incbin "baserom.dol", 0x3D03B4, 0x4
|
||||
.global lbl_80450658
|
||||
lbl_80450658:
|
||||
.incbin "baserom.dol", 0x3D03B8, 0x4
|
||||
.global lbl_8045065C
|
||||
lbl_8045065C:
|
||||
.incbin "baserom.dol", 0x3D03BC, 0x4
|
||||
.global lbl_80450660
|
||||
lbl_80450660:
|
||||
.incbin "baserom.dol", 0x3D03C0, 0x4
|
||||
.global lbl_80450664
|
||||
lbl_80450664:
|
||||
.incbin "baserom.dol", 0x3D03C4, 0x4
|
||||
.global lbl_80450668
|
||||
lbl_80450668:
|
||||
.incbin "baserom.dol", 0x3D03C8, 0x4
|
||||
.global lbl_8045066C
|
||||
lbl_8045066C:
|
||||
.incbin "baserom.dol", 0x3D03CC, 0x4
|
||||
.global lbl_80450670
|
||||
lbl_80450670:
|
||||
.incbin "baserom.dol", 0x3D03D0, 0x4
|
||||
.global lbl_80450674
|
||||
lbl_80450674:
|
||||
.incbin "baserom.dol", 0x3D03D4, 0xC
|
||||
.global lbl_80450680
|
||||
lbl_80450680:
|
||||
.incbin "baserom.dol", 0x3D03E0, 0x8
|
||||
.global lbl_80450688
|
||||
lbl_80450688:
|
||||
.incbin "baserom.dol", 0x3D03E8, 0x8
|
||||
.global lbl_80450690
|
||||
lbl_80450690:
|
||||
.incbin "baserom.dol", 0x3D03F0, 0x4
|
||||
.global lbl_80450694
|
||||
lbl_80450694:
|
||||
.incbin "baserom.dol", 0x3D03F4, 0x4
|
||||
.global lbl_80450698
|
||||
lbl_80450698:
|
||||
.incbin "baserom.dol", 0x3D03F8, 0x4
|
||||
.global lbl_8045069C
|
||||
lbl_8045069C:
|
||||
.incbin "baserom.dol", 0x3D03FC, 0x8
|
||||
.global lbl_804506A4
|
||||
lbl_804506A4:
|
||||
.incbin "baserom.dol", 0x3D0404, 0x4
|
||||
.global lbl_804506A8
|
||||
lbl_804506A8:
|
||||
.incbin "baserom.dol", 0x3D0408, 0x8
|
||||
.global lbl_804506B0
|
||||
lbl_804506B0:
|
||||
.incbin "baserom.dol", 0x3D0410, 0x8
|
||||
.global lbl_804506B8
|
||||
lbl_804506B8:
|
||||
.incbin "baserom.dol", 0x3D0418, 0x8
|
||||
.global lbl_804506C0
|
||||
lbl_804506C0:
|
||||
.incbin "baserom.dol", 0x3D0420, 0x8
|
||||
.global lbl_804506C8
|
||||
lbl_804506C8:
|
||||
.incbin "baserom.dol", 0x3D0428, 0x4
|
||||
.global lbl_804506CC
|
||||
lbl_804506CC:
|
||||
.incbin "baserom.dol", 0x3D042C, 0x4
|
||||
.global lbl_804506D0
|
||||
lbl_804506D0:
|
||||
.incbin "baserom.dol", 0x3D0430, 0x8
|
||||
.global lbl_804506D8
|
||||
lbl_804506D8:
|
||||
.incbin "baserom.dol", 0x3D0438, 0x8
|
||||
.global lbl_804506E0
|
||||
lbl_804506E0:
|
||||
.incbin "baserom.dol", 0x3D0440, 0x8
|
||||
.global lbl_804506E8
|
||||
lbl_804506E8:
|
||||
.incbin "baserom.dol", 0x3D0448, 0x8
|
||||
.global lbl_804506F0
|
||||
lbl_804506F0:
|
||||
.incbin "baserom.dol", 0x3D0450, 0x8
|
||||
.global lbl_804506F8
|
||||
lbl_804506F8:
|
||||
.incbin "baserom.dol", 0x3D0458, 0x8
|
||||
.global lbl_80450700
|
||||
lbl_80450700:
|
||||
.incbin "baserom.dol", 0x3D0460, 0x4
|
||||
.global lbl_80450704
|
||||
lbl_80450704:
|
||||
.incbin "baserom.dol", 0x3D0464, 0x4
|
||||
.global lbl_80450708
|
||||
lbl_80450708:
|
||||
.incbin "baserom.dol", 0x3D0468, 0x4
|
||||
.global lbl_8045070C
|
||||
lbl_8045070C:
|
||||
.incbin "baserom.dol", 0x3D046C, 0x4
|
||||
.global lbl_80450710
|
||||
lbl_80450710:
|
||||
.incbin "baserom.dol", 0x3D0470, 0x8
|
||||
.global lbl_80450718
|
||||
lbl_80450718:
|
||||
.incbin "baserom.dol", 0x3D0478, 0x8
|
||||
.global lbl_80450720
|
||||
lbl_80450720:
|
||||
.incbin "baserom.dol", 0x3D0480, 0x8
|
||||
.global lbl_80450728
|
||||
lbl_80450728:
|
||||
.incbin "baserom.dol", 0x3D0488, 0x8
|
||||
.global lbl_80450730
|
||||
lbl_80450730:
|
||||
.incbin "baserom.dol", 0x3D0490, 0x8
|
||||
.global lbl_80450738
|
||||
lbl_80450738:
|
||||
.incbin "baserom.dol", 0x3D0498, 0x8
|
||||
.global lbl_80450740
|
||||
lbl_80450740:
|
||||
.incbin "baserom.dol", 0x3D04A0, 0x4
|
||||
.global lbl_80450744
|
||||
lbl_80450744:
|
||||
.incbin "baserom.dol", 0x3D04A4, 0x4
|
||||
.global lbl_80450748
|
||||
lbl_80450748:
|
||||
.incbin "baserom.dol", 0x3D04A8, 0x4
|
||||
.global lbl_8045074C
|
||||
lbl_8045074C:
|
||||
.incbin "baserom.dol", 0x3D04AC, 0x4
|
||||
.global lbl_80450750
|
||||
lbl_80450750:
|
||||
.incbin "baserom.dol", 0x3D04B0, 0x8
|
||||
.global lbl_80450758
|
||||
lbl_80450758:
|
||||
.incbin "baserom.dol", 0x3D04B8, 0xC
|
||||
.global lbl_80450764
|
||||
lbl_80450764:
|
||||
.incbin "baserom.dol", 0x3D04C4, 0x1
|
||||
.global lbl_80450765
|
||||
lbl_80450765:
|
||||
.incbin "baserom.dol", 0x3D04C5, 0x3
|
||||
.global lbl_80450768
|
||||
lbl_80450768:
|
||||
.incbin "baserom.dol", 0x3D04C8, 0x8
|
||||
.global lbl_80450770
|
||||
lbl_80450770:
|
||||
.incbin "baserom.dol", 0x3D04D0, 0x4
|
||||
.global lbl_80450774
|
||||
lbl_80450774:
|
||||
.incbin "baserom.dol", 0x3D04D4, 0x4
|
||||
.global lbl_80450778
|
||||
lbl_80450778:
|
||||
.incbin "baserom.dol", 0x3D04D8, 0x4
|
||||
.global lbl_8045077C
|
||||
lbl_8045077C:
|
||||
.incbin "baserom.dol", 0x3D04DC, 0x4
|
||||
.global lbl_80450780
|
||||
lbl_80450780:
|
||||
.incbin "baserom.dol", 0x3D04E0, 0x4
|
||||
.global lbl_80450784
|
||||
lbl_80450784:
|
||||
.incbin "baserom.dol", 0x3D04E4, 0x4
|
||||
.global lbl_80450788
|
||||
lbl_80450788:
|
||||
.incbin "baserom.dol", 0x3D04E8, 0x4
|
||||
.global lbl_8045078C
|
||||
lbl_8045078C:
|
||||
.incbin "baserom.dol", 0x3D04EC, 0x4
|
||||
.global lbl_80450790
|
||||
lbl_80450790:
|
||||
.incbin "baserom.dol", 0x3D04F0, 0x4
|
||||
.global lbl_80450794
|
||||
lbl_80450794:
|
||||
.incbin "baserom.dol", 0x3D04F4, 0x4
|
||||
.global lbl_80450798
|
||||
lbl_80450798:
|
||||
.incbin "baserom.dol", 0x3D04F8, 0x8
|
||||
.global lbl_804507A0
|
||||
lbl_804507A0:
|
||||
.incbin "baserom.dol", 0x3D0500, 0x8
|
||||
.global lbl_804507A8
|
||||
lbl_804507A8:
|
||||
.incbin "baserom.dol", 0x3D0508, 0x4
|
||||
.global lbl_804507AC
|
||||
lbl_804507AC:
|
||||
.incbin "baserom.dol", 0x3D050C, 0x4
|
||||
.global lbl_804507B0
|
||||
lbl_804507B0:
|
||||
.incbin "baserom.dol", 0x3D0510, 0x4
|
||||
.global lbl_804507B4
|
||||
lbl_804507B4:
|
||||
.incbin "baserom.dol", 0x3D0514, 0x4
|
||||
.global lbl_804507B8
|
||||
lbl_804507B8:
|
||||
.incbin "baserom.dol", 0x3D0518, 0x8
|
||||
.global lbl_804507C0
|
||||
lbl_804507C0:
|
||||
.incbin "baserom.dol", 0x3D0520, 0x4
|
||||
.global lbl_804507C4
|
||||
lbl_804507C4:
|
||||
.incbin "baserom.dol", 0x3D0524, 0x4
|
||||
.global lbl_804507C8
|
||||
lbl_804507C8:
|
||||
.incbin "baserom.dol", 0x3D0528, 0x8
|
||||
.global lbl_804507D0
|
||||
lbl_804507D0:
|
||||
.incbin "baserom.dol", 0x3D0530, 0x8
|
||||
.global lbl_804507D8
|
||||
lbl_804507D8:
|
||||
.incbin "baserom.dol", 0x3D0538, 0x4
|
||||
.global lbl_804507DC
|
||||
lbl_804507DC:
|
||||
.incbin "baserom.dol", 0x3D053C, 0x4
|
||||
.global lbl_804507E0
|
||||
lbl_804507E0:
|
||||
.incbin "baserom.dol", 0x3D0540, 0x4
|
||||
.global lbl_804507E4
|
||||
lbl_804507E4:
|
||||
.incbin "baserom.dol", 0x3D0544, 0x4
|
||||
.global lbl_804507E8
|
||||
lbl_804507E8:
|
||||
.incbin "baserom.dol", 0x3D0548, 0x4
|
||||
.global lbl_804507EC
|
||||
lbl_804507EC:
|
||||
.incbin "baserom.dol", 0x3D054C, 0x4
|
||||
.global lbl_804507F0
|
||||
lbl_804507F0:
|
||||
.incbin "baserom.dol", 0x3D0550, 0x4
|
||||
.global lbl_804507F4
|
||||
lbl_804507F4:
|
||||
.incbin "baserom.dol", 0x3D0554, 0x4
|
||||
.global lbl_804507F8
|
||||
lbl_804507F8:
|
||||
.incbin "baserom.dol", 0x3D0558, 0x4
|
||||
.global lbl_804507FC
|
||||
lbl_804507FC:
|
||||
.incbin "baserom.dol", 0x3D055C, 0x4
|
||||
.global lbl_80450800
|
||||
lbl_80450800:
|
||||
.incbin "baserom.dol", 0x3D0560, 0x4
|
||||
.global lbl_80450804
|
||||
lbl_80450804:
|
||||
.incbin "baserom.dol", 0x3D0564, 0x4
|
||||
.global lbl_80450808
|
||||
lbl_80450808:
|
||||
.incbin "baserom.dol", 0x3D0568, 0x4
|
||||
.global lbl_8045080C
|
||||
lbl_8045080C:
|
||||
.incbin "baserom.dol", 0x3D056C, 0x4
|
||||
.global lbl_80450810
|
||||
lbl_80450810:
|
||||
.incbin "baserom.dol", 0x3D0570, 0x4
|
||||
.global lbl_80450814
|
||||
lbl_80450814:
|
||||
.incbin "baserom.dol", 0x3D0574, 0x4
|
||||
.global lbl_80450818
|
||||
lbl_80450818:
|
||||
.incbin "baserom.dol", 0x3D0578, 0x4
|
||||
.global lbl_8045081C
|
||||
lbl_8045081C:
|
||||
.incbin "baserom.dol", 0x3D057C, 0x4
|
||||
.global lbl_80450820
|
||||
lbl_80450820:
|
||||
.incbin "baserom.dol", 0x3D0580, 0x4
|
||||
.global lbl_80450824
|
||||
lbl_80450824:
|
||||
.incbin "baserom.dol", 0x3D0584, 0x4
|
||||
.global lbl_80450828
|
||||
lbl_80450828:
|
||||
.incbin "baserom.dol", 0x3D0588, 0x4
|
||||
.global lbl_8045082C
|
||||
lbl_8045082C:
|
||||
.incbin "baserom.dol", 0x3D058C, 0x4
|
||||
.global lbl_80450830
|
||||
lbl_80450830:
|
||||
.incbin "baserom.dol", 0x3D0590, 0x4
|
||||
.global lbl_80450834
|
||||
lbl_80450834:
|
||||
.incbin "baserom.dol", 0x3D0594, 0x4
|
||||
.global lbl_80450838
|
||||
lbl_80450838:
|
||||
.incbin "baserom.dol", 0x3D0598, 0x4
|
||||
.global lbl_8045083C
|
||||
lbl_8045083C:
|
||||
.incbin "baserom.dol", 0x3D059C, 0x4
|
||||
.global lbl_80450840
|
||||
lbl_80450840:
|
||||
.incbin "baserom.dol", 0x3D05A0, 0x4
|
||||
.global lbl_80450844
|
||||
lbl_80450844:
|
||||
.incbin "baserom.dol", 0x3D05A4, 0x4
|
||||
.global lbl_80450848
|
||||
lbl_80450848:
|
||||
.incbin "baserom.dol", 0x3D05A8, 0x4
|
||||
.global lbl_8045084C
|
||||
lbl_8045084C:
|
||||
.incbin "baserom.dol", 0x3D05AC, 0x4
|
||||
.global lbl_80450850
|
||||
lbl_80450850:
|
||||
.incbin "baserom.dol", 0x3D05B0, 0x4
|
||||
.global lbl_80450854
|
||||
lbl_80450854:
|
||||
.incbin "baserom.dol", 0x3D05B4, 0x4
|
||||
.global lbl_80450858
|
||||
lbl_80450858:
|
||||
.incbin "baserom.dol", 0x3D05B8, 0x4
|
||||
.global lbl_8045085C
|
||||
lbl_8045085C:
|
||||
.incbin "baserom.dol", 0x3D05BC, 0x4
|
||||
.global lbl_80450860
|
||||
lbl_80450860:
|
||||
.incbin "baserom.dol", 0x3D05C0, 0x1
|
||||
.global lbl_80450861
|
||||
lbl_80450861:
|
||||
.incbin "baserom.dol", 0x3D05C1, 0x1
|
||||
.global lbl_80450862
|
||||
lbl_80450862:
|
||||
.incbin "baserom.dol", 0x3D05C2, 0x1
|
||||
.global lbl_80450863
|
||||
lbl_80450863:
|
||||
.incbin "baserom.dol", 0x3D05C3, 0x1
|
||||
.global lbl_80450864
|
||||
lbl_80450864:
|
||||
.incbin "baserom.dol", 0x3D05C4, 0x1
|
||||
.global lbl_80450865
|
||||
lbl_80450865:
|
||||
.incbin "baserom.dol", 0x3D05C5, 0x1
|
||||
.global lbl_80450866
|
||||
lbl_80450866:
|
||||
.incbin "baserom.dol", 0x3D05C6, 0x1
|
||||
.global lbl_80450867
|
||||
lbl_80450867:
|
||||
.incbin "baserom.dol", 0x3D05C7, 0x1
|
||||
.global lbl_80450868
|
||||
lbl_80450868:
|
||||
.incbin "baserom.dol", 0x3D05C8, 0x1
|
||||
.global lbl_80450869
|
||||
lbl_80450869:
|
||||
.incbin "baserom.dol", 0x3D05C9, 0x1
|
||||
.global lbl_8045086A
|
||||
lbl_8045086A:
|
||||
.incbin "baserom.dol", 0x3D05CA, 0x1
|
||||
.global lbl_8045086B
|
||||
lbl_8045086B:
|
||||
.incbin "baserom.dol", 0x3D05CB, 0x1
|
||||
.global lbl_8045086C
|
||||
lbl_8045086C:
|
||||
.incbin "baserom.dol", 0x3D05CC, 0x4
|
||||
.global lbl_80450870
|
||||
lbl_80450870:
|
||||
.incbin "baserom.dol", 0x3D05D0, 0x4
|
||||
.global lbl_80450874
|
||||
lbl_80450874:
|
||||
.incbin "baserom.dol", 0x3D05D4, 0x4
|
||||
.global lbl_80450878
|
||||
lbl_80450878:
|
||||
.incbin "baserom.dol", 0x3D05D8, 0x8
|
||||
.global lbl_80450880
|
||||
lbl_80450880:
|
||||
.incbin "baserom.dol", 0x3D05E0, 0x4
|
||||
.global lbl_80450884
|
||||
lbl_80450884:
|
||||
.incbin "baserom.dol", 0x3D05E4, 0x4
|
||||
.global lbl_80450888
|
||||
lbl_80450888:
|
||||
.incbin "baserom.dol", 0x3D05E8, 0x4
|
||||
.global lbl_8045088C
|
||||
lbl_8045088C:
|
||||
.incbin "baserom.dol", 0x3D05EC, 0x1
|
||||
.global lbl_8045088D
|
||||
lbl_8045088D:
|
||||
.incbin "baserom.dol", 0x3D05ED, 0x1
|
||||
.global lbl_8045088E
|
||||
lbl_8045088E:
|
||||
.incbin "baserom.dol", 0x3D05EE, 0x2
|
||||
.global lbl_80450890
|
||||
lbl_80450890:
|
||||
.incbin "baserom.dol", 0x3D05F0, 0x4
|
||||
.global lbl_80450894
|
||||
lbl_80450894:
|
||||
.incbin "baserom.dol", 0x3D05F4, 0x1
|
||||
.global lbl_80450895
|
||||
lbl_80450895:
|
||||
.incbin "baserom.dol", 0x3D05F5, 0x3
|
||||
.global lbl_80450898
|
||||
lbl_80450898:
|
||||
.incbin "baserom.dol", 0x3D05F8, 0x4
|
||||
.global lbl_8045089C
|
||||
lbl_8045089C:
|
||||
.incbin "baserom.dol", 0x3D05FC, 0xC
|
||||
.global lbl_804508A8
|
||||
lbl_804508A8:
|
||||
.incbin "baserom.dol", 0x3D0608, 0x8
|
||||
.global lbl_804508B0
|
||||
lbl_804508B0:
|
||||
.incbin "baserom.dol", 0x3D0610, 0x8
|
||||
.global lbl_804508B8
|
||||
lbl_804508B8:
|
||||
.incbin "baserom.dol", 0x3D0618, 0x8
|
||||
.global lbl_804508C0
|
||||
lbl_804508C0:
|
||||
.incbin "baserom.dol", 0x3D0620, 0x8
|
||||
.global lbl_804508C8
|
||||
lbl_804508C8:
|
||||
.incbin "baserom.dol", 0x3D0628, 0x4
|
||||
.global lbl_804508CC
|
||||
lbl_804508CC:
|
||||
.incbin "baserom.dol", 0x3D062C, 0x4
|
||||
.global lbl_804508D0
|
||||
lbl_804508D0:
|
||||
.incbin "baserom.dol", 0x3D0630, 0x4
|
||||
.global lbl_804508D4
|
||||
lbl_804508D4:
|
||||
.incbin "baserom.dol", 0x3D0634, 0x4
|
||||
.global lbl_804508D8
|
||||
lbl_804508D8:
|
||||
.incbin "baserom.dol", 0x3D0638, 0x4
|
||||
.global lbl_804508DC
|
||||
lbl_804508DC:
|
||||
.incbin "baserom.dol", 0x3D063C, 0x4
|
||||
.global lbl_804508E0
|
||||
lbl_804508E0:
|
||||
.incbin "baserom.dol", 0x3D0640, 0x4
|
||||
.global lbl_804508E4
|
||||
lbl_804508E4:
|
||||
.incbin "baserom.dol", 0x3D0644, 0x4
|
||||
.global lbl_804508E8
|
||||
lbl_804508E8:
|
||||
.incbin "baserom.dol", 0x3D0648, 0x4
|
||||
.global lbl_804508EC
|
||||
lbl_804508EC:
|
||||
.incbin "baserom.dol", 0x3D064C, 0x4
|
||||
.global lbl_804508F0
|
||||
lbl_804508F0:
|
||||
.incbin "baserom.dol", 0x3D0650, 0x8
|
||||
.global lbl_804508F8
|
||||
lbl_804508F8:
|
||||
.incbin "baserom.dol", 0x3D0658, 0x8
|
||||
.global lbl_80450900
|
||||
lbl_80450900:
|
||||
.incbin "baserom.dol", 0x3D0660, 0x4
|
||||
.global lbl_80450904
|
||||
lbl_80450904:
|
||||
.incbin "baserom.dol", 0x3D0664, 0x4
|
||||
.global lbl_80450908
|
||||
lbl_80450908:
|
||||
.incbin "baserom.dol", 0x3D0668, 0x4
|
||||
.global lbl_8045090C
|
||||
lbl_8045090C:
|
||||
.incbin "baserom.dol", 0x3D066C, 0x8
|
||||
.global lbl_80450914
|
||||
lbl_80450914:
|
||||
.incbin "baserom.dol", 0x3D0674, 0x8
|
||||
.global lbl_8045091C
|
||||
lbl_8045091C:
|
||||
.incbin "baserom.dol", 0x3D067C, 0x8
|
||||
.global lbl_80450924
|
||||
lbl_80450924:
|
||||
.incbin "baserom.dol", 0x3D0684, 0x8
|
||||
.global lbl_8045092C
|
||||
lbl_8045092C:
|
||||
.incbin "baserom.dol", 0x3D068C, 0x8
|
||||
.global lbl_80450934
|
||||
lbl_80450934:
|
||||
.incbin "baserom.dol", 0x3D0694, 0x8
|
||||
.global lbl_8045093C
|
||||
lbl_8045093C:
|
||||
.incbin "baserom.dol", 0x3D069C, 0x8
|
||||
.global lbl_80450944
|
||||
lbl_80450944:
|
||||
.incbin "baserom.dol", 0x3D06A4, 0xC
|
||||
.global lbl_80450950
|
||||
lbl_80450950:
|
||||
.incbin "baserom.dol", 0x3D06B0, 0x4
|
||||
.global lbl_80450954
|
||||
lbl_80450954:
|
||||
.incbin "baserom.dol", 0x3D06B4, 0x4
|
||||
.global lbl_80450958
|
||||
lbl_80450958:
|
||||
.incbin "baserom.dol", 0x3D06B8, 0x8
|
||||
.global lbl_80450960
|
||||
lbl_80450960:
|
||||
.incbin "baserom.dol", 0x3D06C0, 0x4
|
||||
.global lbl_80450964
|
||||
lbl_80450964:
|
||||
.incbin "baserom.dol", 0x3D06C4, 0x4
|
||||
.global lbl_80450968
|
||||
lbl_80450968:
|
||||
.incbin "baserom.dol", 0x3D06C8, 0x8
|
||||
.global lbl_80450970
|
||||
lbl_80450970:
|
||||
.incbin "baserom.dol", 0x3D06D0, 0x4
|
||||
.global lbl_80450974
|
||||
lbl_80450974:
|
||||
.incbin "baserom.dol", 0x3D06D4, 0x4
|
||||
.global lbl_80450978
|
||||
lbl_80450978:
|
||||
.incbin "baserom.dol", 0x3D06D8, 0x8
|
||||
.global lbl_80450980
|
||||
lbl_80450980:
|
||||
.incbin "baserom.dol", 0x3D06E0, 0x4
|
||||
.global lbl_80450984
|
||||
lbl_80450984:
|
||||
.incbin "baserom.dol", 0x3D06E4, 0x8
|
||||
.global lbl_8045098C
|
||||
lbl_8045098C:
|
||||
.incbin "baserom.dol", 0x3D06EC, 0x4
|
||||
.global lbl_80450990
|
||||
lbl_80450990:
|
||||
.incbin "baserom.dol", 0x3D06F0, 0x8
|
||||
.global lbl_80450998
|
||||
lbl_80450998:
|
||||
.incbin "baserom.dol", 0x3D06F8, 0x8
|
||||
.global lbl_804509A0
|
||||
lbl_804509A0:
|
||||
.incbin "baserom.dol", 0x3D0700, 0x4
|
||||
.global lbl_804509A4
|
||||
lbl_804509A4:
|
||||
.incbin "baserom.dol", 0x3D0704, 0x4
|
||||
.global lbl_804509A8
|
||||
lbl_804509A8:
|
||||
.incbin "baserom.dol", 0x3D0708, 0x8
|
||||
.global lbl_804509B0
|
||||
lbl_804509B0:
|
||||
.incbin "baserom.dol", 0x3D0710, 0x8
|
||||
.global lbl_804509B8
|
||||
lbl_804509B8:
|
||||
.incbin "baserom.dol", 0x3D0718, 0x4
|
||||
.global lbl_804509BC
|
||||
lbl_804509BC:
|
||||
.incbin "baserom.dol", 0x3D071C, 0x4
|
||||
.global lbl_804509C0
|
||||
lbl_804509C0:
|
||||
.incbin "baserom.dol", 0x3D0720, 0x8
|
||||
.global lbl_804509C8
|
||||
lbl_804509C8:
|
||||
.incbin "baserom.dol", 0x3D0728, 0x8
|
||||
.global lbl_804509D0
|
||||
lbl_804509D0:
|
||||
.incbin "baserom.dol", 0x3D0730, 0x8
|
||||
.global lbl_804509D8
|
||||
lbl_804509D8:
|
||||
.incbin "baserom.dol", 0x3D0738, 0x8
|
||||
.global lbl_804509E0
|
||||
lbl_804509E0:
|
||||
.incbin "baserom.dol", 0x3D0740, 0x8
|
||||
.global lbl_804509E8
|
||||
lbl_804509E8:
|
||||
.incbin "baserom.dol", 0x3D0748, 0x4
|
||||
.global lbl_804509EC
|
||||
lbl_804509EC:
|
||||
.incbin "baserom.dol", 0x3D074C, 0x4
|
||||
.global lbl_804509F0
|
||||
lbl_804509F0:
|
||||
.incbin "baserom.dol", 0x3D0750, 0x4
|
||||
.global lbl_804509F4
|
||||
lbl_804509F4:
|
||||
.incbin "baserom.dol", 0x3D0754, 0x8
|
||||
.global lbl_804509FC
|
||||
lbl_804509FC:
|
||||
.incbin "baserom.dol", 0x3D075C, 0x4
|
||||
.global lbl_80450A00
|
||||
lbl_80450A00:
|
||||
.incbin "baserom.dol", 0x3D0760, 0x4
|
||||
.global lbl_80450A04
|
||||
lbl_80450A04:
|
||||
.incbin "baserom.dol", 0x3D0764, 0x4
|
||||
.global lbl_80450A08
|
||||
lbl_80450A08:
|
||||
.incbin "baserom.dol", 0x3D0768, 0x8
|
||||
.global lbl_80450A10
|
||||
lbl_80450A10:
|
||||
.incbin "baserom.dol", 0x3D0770, 0x4
|
||||
.global lbl_80450A14
|
||||
lbl_80450A14:
|
||||
.incbin "baserom.dol", 0x3D0774, 0xC
|
||||
.global lbl_80450A20
|
||||
lbl_80450A20:
|
||||
.incbin "baserom.dol", 0x3D0780, 0x4
|
||||
.global lbl_80450A24
|
||||
lbl_80450A24:
|
||||
.incbin "baserom.dol", 0x3D0784, 0x4
|
||||
.global lbl_80450A28
|
||||
lbl_80450A28:
|
||||
.incbin "baserom.dol", 0x3D0788, 0x4
|
||||
.global lbl_80450A2C
|
||||
lbl_80450A2C:
|
||||
.incbin "baserom.dol", 0x3D078C, 0x4
|
||||
.global lbl_80450A30
|
||||
lbl_80450A30:
|
||||
.incbin "baserom.dol", 0x3D0790, 0x4
|
||||
.global lbl_80450A34
|
||||
lbl_80450A34:
|
||||
.incbin "baserom.dol", 0x3D0794, 0x4
|
||||
.global lbl_80450A38
|
||||
lbl_80450A38:
|
||||
.incbin "baserom.dol", 0x3D0798, 0x4
|
||||
.global lbl_80450A3C
|
||||
lbl_80450A3C:
|
||||
.incbin "baserom.dol", 0x3D079C, 0x4
|
||||
.global lbl_80450A40
|
||||
lbl_80450A40:
|
||||
.incbin "baserom.dol", 0x3D07A0, 0x8
|
||||
.global lbl_80450A48
|
||||
lbl_80450A48:
|
||||
.incbin "baserom.dol", 0x3D07A8, 0x8
|
||||
.global lbl_80450A50
|
||||
lbl_80450A50:
|
||||
.incbin "baserom.dol", 0x3D07B0, 0x8
|
||||
.global lbl_80450A58
|
||||
lbl_80450A58:
|
||||
.incbin "baserom.dol", 0x3D07B8, 0x8
|
||||
.global lbl_80450A60
|
||||
lbl_80450A60:
|
||||
.incbin "baserom.dol", 0x3D07C0, 0x8
|
||||
.global lbl_80450A68
|
||||
lbl_80450A68:
|
||||
.incbin "baserom.dol", 0x3D07C8, 0x8
|
||||
.global lbl_80450A70
|
||||
lbl_80450A70:
|
||||
.incbin "baserom.dol", 0x3D07D0, 0x2
|
||||
.global lbl_80450A72
|
||||
lbl_80450A72:
|
||||
.incbin "baserom.dol", 0x3D07D2, 0x6
|
||||
.global lbl_80450A78
|
||||
lbl_80450A78:
|
||||
.incbin "baserom.dol", 0x3D07D8, 0x8
|
||||
.global lbl_80450A80
|
||||
lbl_80450A80:
|
||||
.incbin "baserom.dol", 0x3D07E0, 0x4
|
||||
.global lbl_80450A84
|
||||
lbl_80450A84:
|
||||
.incbin "baserom.dol", 0x3D07E4, 0x4
|
||||
.global lbl_80450A88
|
||||
lbl_80450A88:
|
||||
.incbin "baserom.dol", 0x3D07E8, 0x8
|
||||
.global lbl_80450A90
|
||||
lbl_80450A90:
|
||||
.incbin "baserom.dol", 0x3D07F0, 0x8
|
||||
.global lbl_80450A98
|
||||
lbl_80450A98:
|
||||
.incbin "baserom.dol", 0x3D07F8, 0x8
|
||||
.global lbl_80450AA0
|
||||
lbl_80450AA0:
|
||||
.incbin "baserom.dol", 0x3D0800, 0x8
|
||||
.global lbl_80450AA8
|
||||
lbl_80450AA8:
|
||||
.incbin "baserom.dol", 0x3D0808, 0x8
|
||||
.global lbl_80450AB0
|
||||
lbl_80450AB0:
|
||||
.incbin "baserom.dol", 0x3D0810, 0x8
|
||||
.global lbl_80450AB8
|
||||
lbl_80450AB8:
|
||||
.incbin "baserom.dol", 0x3D0818, 0x8
|
||||
.global lbl_80450AC0
|
||||
lbl_80450AC0:
|
||||
.incbin "baserom.dol", 0x3D0820, 0x8
|
||||
.global lbl_80450AC8
|
||||
lbl_80450AC8:
|
||||
.incbin "baserom.dol", 0x3D0828, 0x8
|
||||
.global lbl_80450AD0
|
||||
lbl_80450AD0:
|
||||
.incbin "baserom.dol", 0x3D0830, 0x8
|
||||
.global lbl_80450AD8
|
||||
lbl_80450AD8:
|
||||
.incbin "baserom.dol", 0x3D0838, 0x8
|
||||
.global lbl_80450AE0
|
||||
lbl_80450AE0:
|
||||
.incbin "baserom.dol", 0x3D0840, 0x4
|
||||
.global lbl_80450AE4
|
||||
lbl_80450AE4:
|
||||
.incbin "baserom.dol", 0x3D0844, 0x4
|
||||
.global lbl_80450AE8
|
||||
lbl_80450AE8:
|
||||
.incbin "baserom.dol", 0x3D0848, 0x4
|
||||
.global lbl_80450AEC
|
||||
lbl_80450AEC:
|
||||
.incbin "baserom.dol", 0x3D084C, 0x4
|
||||
.global lbl_80450AF0
|
||||
lbl_80450AF0:
|
||||
.incbin "baserom.dol", 0x3D0850, 0x10
|
||||
+12709
File diff suppressed because it is too large
Load Diff
+986306
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
OBJDUMP="$DEVKITPPC/bin/powerpc-eabi-objdump -D -bbinary -EB -mpowerpc -M gekko"
|
||||
OPTIONS="--start-address=$(($1)) --stop-address=$(($1 + $2))"
|
||||
$OBJDUMP $OPTIONS baserom.dol > baserom.dump
|
||||
$OBJDUMP $OPTIONS main.dol > main.dump
|
||||
diff -u --color=always baserom.dump main.dump
|
||||
@@ -0,0 +1 @@
|
||||
4997D93B9692620C40E90374A0F1DBF0E4889395 build/dolzel2/main.dol
|
||||
@@ -0,0 +1,34 @@
|
||||
#ifndef __TYPES_H__
|
||||
#define __TYPES_H__
|
||||
|
||||
typedef signed char s8;
|
||||
typedef signed short s16;
|
||||
typedef signed long s32;
|
||||
typedef signed long long s64;
|
||||
typedef unsigned char u8;
|
||||
typedef unsigned short u16;
|
||||
typedef unsigned long u32;
|
||||
typedef unsigned long long u64;
|
||||
|
||||
typedef volatile u8 vu8;
|
||||
typedef volatile u16 vu16;
|
||||
typedef volatile u32 vu32;
|
||||
typedef volatile u64 vu64;
|
||||
typedef volatile s8 vs8;
|
||||
typedef volatile s16 vs16;
|
||||
typedef volatile s32 vs32;
|
||||
typedef volatile s64 vs64;
|
||||
|
||||
typedef float f32;
|
||||
typedef double f64;
|
||||
typedef volatile f32 vf32;
|
||||
typedef volatile f64 vf64;
|
||||
|
||||
typedef int BOOL;
|
||||
|
||||
#define TRUE 1
|
||||
#define FALSE 0
|
||||
|
||||
#define NULL ((void*)0)
|
||||
|
||||
#endif
|
||||
@@ -0,0 +1,94 @@
|
||||
/*
|
||||
Code sections:
|
||||
.text0: 0x00000100 0x80003100 0x80005600
|
||||
.text1: 0x00002600 0x800056C0 0x803737C0
|
||||
Data sections:
|
||||
.data0: 0x00370700 0x80005600 0x80005660
|
||||
.data1: 0x00370760 0x80005660 0x800056C0
|
||||
.data2: 0x003707C0 0x803737C0 0x80373980
|
||||
.data3: 0x00370980 0x80373980 0x803739A0
|
||||
.data4: 0x003709A0 0x803739A0 0x803A2EE0
|
||||
.data5: 0x0039FEE0 0x803A2EE0 0x803D32E0
|
||||
.data6: 0x003D02E0 0x80450580 0x80450B00
|
||||
.data7: 0x003D0860 0x80451A00 0x80456B60
|
||||
BSS section:
|
||||
.bss: 0x00000000 0x803D32E0 0x80456BC8
|
||||
Entry Point: 0x80003154
|
||||
*/
|
||||
# PowerPC Register Constants
|
||||
.set r0, 0
|
||||
.set r1, 1
|
||||
.set r2, 2
|
||||
.set r3, 3
|
||||
.set r4, 4
|
||||
.set r5, 5
|
||||
.set r6, 6
|
||||
.set r7, 7
|
||||
.set r8, 8
|
||||
.set r9, 9
|
||||
.set r10, 10
|
||||
.set r11, 11
|
||||
.set r12, 12
|
||||
.set r13, 13
|
||||
.set r14, 14
|
||||
.set r15, 15
|
||||
.set r16, 16
|
||||
.set r17, 17
|
||||
.set r18, 18
|
||||
.set r19, 19
|
||||
.set r20, 20
|
||||
.set r21, 21
|
||||
.set r22, 22
|
||||
.set r23, 23
|
||||
.set r24, 24
|
||||
.set r25, 25
|
||||
.set r26, 26
|
||||
.set r27, 27
|
||||
.set r28, 28
|
||||
.set r29, 29
|
||||
.set r30, 30
|
||||
.set r31, 31
|
||||
.set f0, 0
|
||||
.set f1, 1
|
||||
.set f2, 2
|
||||
.set f3, 3
|
||||
.set f4, 4
|
||||
.set f5, 5
|
||||
.set f6, 6
|
||||
.set f7, 7
|
||||
.set f8, 8
|
||||
.set f9, 9
|
||||
.set f10, 10
|
||||
.set f11, 11
|
||||
.set f12, 12
|
||||
.set f13, 13
|
||||
.set f14, 14
|
||||
.set f15, 15
|
||||
.set f16, 16
|
||||
.set f17, 17
|
||||
.set f18, 18
|
||||
.set f19, 19
|
||||
.set f20, 20
|
||||
.set f21, 21
|
||||
.set f22, 22
|
||||
.set f23, 23
|
||||
.set f24, 24
|
||||
.set f25, 25
|
||||
.set f26, 26
|
||||
.set f27, 27
|
||||
.set f28, 28
|
||||
.set f29, 29
|
||||
.set f30, 30
|
||||
.set f31, 31
|
||||
.set qr0, 0
|
||||
.set qr1, 1
|
||||
.set qr2, 2
|
||||
.set qr3, 3
|
||||
.set qr4, 4
|
||||
.set qr5, 5
|
||||
.set qr6, 6
|
||||
.set qr7, 7
|
||||
# Small Data Area (read/write) Base
|
||||
.set _SDA_BASE_, 0x80458580
|
||||
# Small Data Area (read only) Base
|
||||
.set _SDA2_BASE_, 0x80459A00
|
||||
@@ -0,0 +1,42 @@
|
||||
MEMORY {
|
||||
text : origin = 0x80003100
|
||||
}
|
||||
SECTIONS {
|
||||
GROUP:{
|
||||
.init ALIGN(0x20):{}
|
||||
extab_ ALIGN(0x20):{}
|
||||
extabindex_ ALIGN(0x20):{}
|
||||
.text ALIGN(0x20):{}
|
||||
.ctors ALIGN(0x20):{}
|
||||
.dtors ALIGN(0x20):{}
|
||||
.rodata ALIGN(0x20):{}
|
||||
.data ALIGN(0x20):{}
|
||||
.bss ALIGN(0x20):{}
|
||||
.sdata ALIGN(0x20):{}
|
||||
.sbss ALIGN(0x20):{}
|
||||
.sdata2 ALIGN(0x20):{}
|
||||
.sbss2 ALIGN(0x20):{}
|
||||
.stack ALIGN(0x100):{}
|
||||
} > text
|
||||
_stack_addr = (_f_sbss2 + SIZEOF(.sbss2) + 65536 + 0x7) & ~0x7;
|
||||
_stack_end = _f_sbss2 + SIZEOF(.sbss2);
|
||||
_db_stack_addr = (_stack_addr + 0x2000);
|
||||
_db_stack_end = _stack_addr;
|
||||
__ArenaLo = (_db_stack_addr + 0x1f) & ~0x1f;
|
||||
__ArenaHi = 0x81700000 ;
|
||||
}
|
||||
/*
|
||||
.init 80003100 - 80005600
|
||||
extab 80005600 - 80005660
|
||||
extabindex 80005660 - 800056BC
|
||||
.text 800056C0 - 803737C0
|
||||
.ctors 803737C0 - 80373980
|
||||
.dtors 80373980 - 803739A0
|
||||
.rodata 803739A0 - 803A2EE0
|
||||
.data 803A2EE0 - 803D32E0
|
||||
.bss 803D32E0 - 80450580
|
||||
.sdata 80450580 - 80450B00
|
||||
.sbss 80450B00 - 80451A00
|
||||
.sdata2 80451A00 - 80456B60
|
||||
.sbss2 80456B60 - 80456BC8
|
||||
*/
|
||||
@@ -0,0 +1,40 @@
|
||||
# Linker order for every file, passed to the Metrowerks linker.
|
||||
|
||||
INIT_O_FILES := \
|
||||
$(BUILD_DIR)/asm/init.o
|
||||
|
||||
EXTAB_O_FILES := \
|
||||
$(BUILD_DIR)/asm/extab.o
|
||||
|
||||
EXTABINDEX_O_FILES := \
|
||||
$(BUILD_DIR)/asm/extabindex.o
|
||||
|
||||
TEXT_O_FILES := \
|
||||
$(BUILD_DIR)/asm/text.o \
|
||||
|
||||
CTORS_O_FILES := \
|
||||
$(BUILD_DIR)/asm/ctors.o
|
||||
|
||||
DTORS_O_FILES := \
|
||||
$(BUILD_DIR)/asm/dtors.o
|
||||
|
||||
RODATA_O_FILES := \
|
||||
$(BUILD_DIR)/asm/rodata.o
|
||||
|
||||
DATA_O_FILES := \
|
||||
$(BUILD_DIR)/asm/data.o \
|
||||
|
||||
BSS_O_FILES := \
|
||||
$(BUILD_DIR)/asm/bss.o
|
||||
|
||||
SDATA_O_FILES := \
|
||||
$(BUILD_DIR)/asm/sdata.o
|
||||
|
||||
SBSS_O_FILES := \
|
||||
$(BUILD_DIR)/asm/sbss.o
|
||||
|
||||
SDATA2_O_FILES := \
|
||||
$(BUILD_DIR)/asm/sdata2.o
|
||||
|
||||
SBSS2_O_FILES := \
|
||||
$(BUILD_DIR)/asm/sbss2.o
|
||||
+627
@@ -0,0 +1,627 @@
|
||||
## RELs SHA1
|
||||
|
||||
```
|
||||
"D526C76F033EB01D4461D320F6F54843FE463084","d_a_b_bh.rel"
|
||||
"9ED97B0F5D6F736312051E08B8B5182F83615831","d_a_b_bq.rel"
|
||||
"BF65B5203FBA5EECDD4A8A99027CB2892F81FC84","d_a_b_dr.rel"
|
||||
"72E1A241D91531AC2EE0D2623C560FE3262A5C06","d_a_b_dre.rel"
|
||||
"EE8AE7AB1A873A736FF2929DF326D2923FE4D148","d_a_b_ds.rel"
|
||||
"CBC6AE00BAF57BD2E9BE97BACC187485360A7524","d_a_b_gg.rel"
|
||||
"14FBD86A93CE66E50E5A9597A68B76478B79D653","d_a_b_gm.rel"
|
||||
"CE8C619E7EA74937899644DDDBB6E8000ACB878D","d_a_b_gnd.rel"
|
||||
"C4959C479128C4BB0E12B97439ACDEAF51716CD7","d_a_b_go.rel"
|
||||
"7BB6E4EE49FE98658332DE17D41F35FDC1DDB769","d_a_b_gos.rel"
|
||||
"A26FFE08227C62DB25816E997C257E1847856C21","d_a_b_mgn.rel"
|
||||
"FC958F705DF7457106F3A5CD0C74FB3BFF40458C","d_a_b_ob.rel"
|
||||
"C1CB6164398557175F2448C01299453C8641A76B","d_a_b_oh.rel"
|
||||
"3E0180EDA3F540633181ACE9B1A2CC8BD533475A","d_a_b_oh2.rel"
|
||||
"ADDD7D14D3B23023C90C112B22D669248CC24E49","d_a_b_tn.rel"
|
||||
"407ABBA0D8F36087DDF8B35DBCB0E05F66A39780","d_a_b_yo.rel"
|
||||
"0076EE6744F39309F2D6EED029644597AE97A774","d_a_b_yo_ice.rel"
|
||||
"AB4CFB83A4A9CCF48AB12F4A71261B21410B0417","d_a_b_zant.rel"
|
||||
"55B92F2FE90A67CE14752E2614048127BDF3F8FD","d_a_b_zant_magic.rel"
|
||||
"02070889A16EDC5E9DDCADF222FD0BBEF7B57054","d_a_b_zant_mobile.rel"
|
||||
"A0756117065438AE9582ED1AD8FE515A71ADCE7D","d_a_b_zant_sima.rel"
|
||||
"37C0946ECDBC16218686F213E7F86B80AC426270","d_a_balloon_2D.rel"
|
||||
"C89BBFD16A14172EB4900D50909583FA926D8CC0","d_a_bullet.rel"
|
||||
"F6CEED40911AA80091B17CB68B0A356E315A85EF","d_a_coach_2D.rel"
|
||||
"1663D78E789846FA43CDF8C86D3F6A5AC272159A","d_a_coach_fire.rel"
|
||||
"33FC1A29393B38E05B219C36E6BE115C390F04D9","d_a_cow.rel"
|
||||
"0B377F95F939409266D799F5D32237CDFB1EE9F5","d_a_cstatue.rel"
|
||||
"A5A21BEDCABDBCA100649D263A4BA52471B6C5FB","d_a_do.rel"
|
||||
"6896014400E237A57503F0D6075D38437805A6AE","d_a_door_boss.rel"
|
||||
"3667A291AA36BCD9A33BB37242209082AEE78A62","d_a_door_bossL5.rel"
|
||||
"43527862E8878D2F6192F1E947DB351F91C2376E","d_a_door_mbossL1.rel"
|
||||
"96AF217AEAC7D277F62E62F7402A65EE68F45F0B","d_a_door_push.rel"
|
||||
"F0C4193FC1A3F81D38D64D50C6AE62402B2BF1FD","d_a_e_ai.rel"
|
||||
"BE5E249A07C390CC058DAD3D2C33198888F0FAB5","d_a_e_arrow.rel"
|
||||
"AE75BDBA3AA850913C32821314409B9F6F0F64DA","d_a_e_ba.rel"
|
||||
"53A6FE4CE1AFF34BA085398433CDC04EAA4DC7B8","d_a_e_bee.rel"
|
||||
"590C37419BBB29304D635B2B43AECD4A5D20C306","d_a_e_bg.rel"
|
||||
"90E48404744F4CAD16246DD88875CEF939B4585E","d_a_e_bi.rel"
|
||||
"C4060CEF650FA8BEA6D3B1087D1BF9C9A20A529D","d_a_e_bi_leaf.rel"
|
||||
"04E8A928E0078922D2D0629656477D1B4DC0717D","d_a_e_bs.rel"
|
||||
"83FB29310F070C1E611D99E71AFCC0A60849CDCA","d_a_e_bu.rel"
|
||||
"AFF95D5818061CD47EDCA56F58B77A9B09F2E6D5","d_a_e_bug.rel"
|
||||
"7CD9B7257E5819186CAEFC4D703FAC9B94C3BEBD","d_a_e_cr.rel"
|
||||
"5EB2D3799283346BC3867818A9FCF6482965CDCF","d_a_e_cr_egg.rel"
|
||||
"D06F3A59774AB3B3FDD83FA0FC0E06E8861F3CF8","d_a_e_db.rel"
|
||||
"5B4C86BE083FD2838B9F2E162424CD71E2C86344","d_a_e_db_leaf.rel"
|
||||
"38AC18419F33670D4550E1E85992213C798949DD","d_a_e_dd.rel"
|
||||
"0E92D56E50DB2EC8EB265629E86DBFE180D30F5F","d_a_e_df.rel"
|
||||
"DCEDA0449B73B48232B35B246B17EA13DD8AED46","d_a_e_dk.rel"
|
||||
"CE8C9336606E8AFF27EC4AADD95E23A1E1087075","d_a_e_dt.rel"
|
||||
"B604D92E4CD05D621C25E7EB947318AB0C50F264","d_a_e_fb.rel"
|
||||
"33FC905BD7FEC76AE15E20834F311B0D3CD8595C","d_a_e_fk.rel"
|
||||
"D914B0EEE912D08183BF1E5A47FDD138400285D6","d_a_e_fs.rel"
|
||||
"5A3CAD6474529556B694379D47FE1EB58AD18E28","d_a_e_fz.rel"
|
||||
"F21CE131A2C435E63AB32D2C65404616F49ECE1A","d_a_e_gb.rel"
|
||||
"C02EC1BB061C65AEC8B71818CE44CEEB198B01E5","d_a_e_ge.rel"
|
||||
"11CC173A4243E2EFE768004386F997953E469D98","d_a_e_gi.rel"
|
||||
"376AFBC36F9D98539D9652CA1384AC2DC1BFCF06","d_a_e_gm.rel"
|
||||
"AF8B3C0660805834931F1F16289AA1A3FA43526D","d_a_e_gob.rel"
|
||||
"784C8F868A0D60A645DDA49E14EE8CFA0272CC96","d_a_e_gs.rel"
|
||||
"C692059934A329764BE53A3CAF480F214A2897A5","d_a_e_hb_leaf.rel"
|
||||
"5ED1B430FD1BE88652E8116E3D0B5B19F657F422","d_a_e_hm.rel"
|
||||
"0786282CF9C9EAE1C0F3D34E8ED15646299D5F2D","d_a_e_hp.rel"
|
||||
"4E2648C9A4D7F983AD2F9C3E62035CE80C929091","d_a_e_hz.rel"
|
||||
"FBC2C3CF5E04C7D50E0FB0A1B88A3170EAEA52C6","d_a_e_hzelda.rel"
|
||||
"5F14FDFB70D8C54105830CAD0C3AF470683461E1","d_a_e_is.rel"
|
||||
"0072BEBFBBE4DE2CFEEAB234CB9AD1554BAE4E9E","d_a_e_kg.rel"
|
||||
"2992F2CF9DC1B096475E505C2730F06C11F5969D","d_a_e_kk.rel"
|
||||
"7742E806CA5EC0EFD41822AF7BF3E122DC6729C9","d_a_e_kr.rel"
|
||||
"77B48EC99B555EDE925F34151A4E2069B168ACE2","d_a_e_mb.rel"
|
||||
"A21302F2F6C1ACC2D0EEC075CBD5EF9168E5FA2D","d_a_e_md.rel"
|
||||
"209464B96ED1E8E2C59A48951D97F8357DF01256","d_a_e_mf.rel"
|
||||
"EC0E8AABA4F0D65981EE736335727F199F5219C3","d_a_e_mk.rel"
|
||||
"12D4F2BD0A1B252141B80C709445D579FD80D5A7","d_a_e_mk_bo.rel"
|
||||
"7A416CC1454B0C287AB3028778174843A4B8B966","d_a_e_mm.rel"
|
||||
"6E4A26884F660B22286024668E14B5FBBDA2B338","d_a_e_mm_mt.rel"
|
||||
"946BC1C1B195F7246BA974D5A0CEAFBADD5B4597","d_a_e_ms.rel"
|
||||
"3A2D8CECF7682096E359747F3C38A178B0AD27F7","d_a_e_nz.rel"
|
||||
"B2D925DF6599A705FB3D20BA7DB164991E14AF4D","d_a_e_oc.rel"
|
||||
"53FD064584E563A847F16AD5BB219F2881D00AC1","d_a_e_oct_bg.rel"
|
||||
"E68DDF87AA7D40CA26A522EE7991A44C19A2459B","d_a_e_ot.rel"
|
||||
"A8A038F3EF4DB862EEBD0A8F258C8F9950D5862D","d_a_e_ph.rel"
|
||||
"8C29B8A90FFC7505DB1DBCC4C2BA655EA5C6130B","d_a_e_pm.rel"
|
||||
"8D19D7F122CE50DABA8551EFC956537DED345D7B","d_a_e_po.rel"
|
||||
"5BB83AC854E7AFB8039609A897AC0AC4EC2CE92E","d_a_e_pz.rel"
|
||||
"0BB6451A88CA5DCAEFDB992805A58551D59E0D0E","d_a_e_rb.rel"
|
||||
"74FF8015DCBC61A0B1D0124C879C80C3C4C72667","d_a_e_rdb.rel"
|
||||
"2364728BF05633DB533698A221190541B035A1AF","d_a_e_rdy.rel"
|
||||
"54A51A17362CF2ABB012A07B20CA8E95E07F8E0E","d_a_e_s1.rel"
|
||||
"122E3A50B45B214267C1836D7D2F782AEC724DD4","d_a_e_sb.rel"
|
||||
"4ED3AE61045ECABEB6E5BFFA7FB1D82CF2828962","d_a_e_sf.rel"
|
||||
"04971D6F0A78ED63EE77ECAC4FDA3386D6B46071","d_a_e_sg.rel"
|
||||
"F0CE8DD759380C7525ACCBC6EAF10B9AF5DE563C","d_a_e_sh.rel"
|
||||
"5F35F70A575EEB84B48CF23C77FD068F025FD15D","d_a_e_sm.rel"
|
||||
"9E452082F591FB8B81C54DD4B89430432E2FC12F","d_a_e_sm2.rel"
|
||||
"98425104B2981B21C725866A3F8ED7C381DD65FE","d_a_e_st.rel"
|
||||
"1EABBB7CA1F9D4AF7BABD899D39DD5E76786804F","d_a_e_st_line.rel"
|
||||
"F21CE3FDBC102F809CEB8843CFFC8487EBBF685B","d_a_e_sw.rel"
|
||||
"FED72D57A9D21690EA444BA97D4708E05519D16A","d_a_e_th.rel"
|
||||
"BBA181DF8125BF257EC17A9661C26C19525C0C70","d_a_e_th_ball.rel"
|
||||
"194B1F691088AC31545A43C5284FABCBDE23AE80","d_a_e_tk.rel"
|
||||
"A73201E49420BE8BF799A0841CC16D852E3172F6","d_a_e_tk_ball.rel"
|
||||
"0E96A4B2B6ED88FDE15D035C757AC7BA3EF4B770","d_a_e_tk2.rel"
|
||||
"1588A8F5A0F63926B233DDD945D39B41CF9CD415","d_a_e_tt.rel"
|
||||
"3C74A0E6208F16AA0EAA467E39F7345FE7EB22A0","d_a_e_vt.rel"
|
||||
"266328865EA58B7F9FA3D55D239C754783DB2E97","d_a_e_warpappear.rel"
|
||||
"559E88F6AF26017F179C8940CD37037A088D97D8","d_a_e_wb.rel"
|
||||
"37E5B7E59B5BEF10F5B0A71B20A12BC4D178FD9E","d_a_e_ws.rel"
|
||||
"8E99CABDF7CD5BD518E1F292B5014DB7199398A6","d_a_e_ww.rel"
|
||||
"624214752285FA39E6A7C82FA2C3C2A49A6A7FC7","d_a_e_yc.rel"
|
||||
"750F0B3E7DBE50B16DCB04FC8B4DB71A733510A8","d_a_e_yd.rel"
|
||||
"07FB1D63AC146CFF82FD742CDA2F44A314B3C0B8","d_a_e_yd_leaf.rel"
|
||||
"E45743E2B5D566996CCBE8F6722293A1ADD05779","d_a_e_yg.rel"
|
||||
"32BD605FD49C0B217B96AD9ECD6E233703566BD2","d_a_e_yh.rel"
|
||||
"F38457EDBA02E29649A98F07F77C51F6BC60E5FE","d_a_e_yk.rel"
|
||||
"614E1C02C1D59EEF6CCC9C4BA7B8F1987129C0D3","d_a_e_ym.rel"
|
||||
"809C1B9AF5E970E1DC980D3577D7D9566549D58F","d_a_e_ym_tag.rel"
|
||||
"8FEBD644363DAFBE1B44102A05AE01793F9C7264","d_a_e_ymb.rel"
|
||||
"34484ADE45E8AA7C243FD1A1302EF8C67284732A","d_a_e_yr.rel"
|
||||
"BB1E7CFDD65A425E9D8EDE8541959F531AA6DCE7","d_a_e_zh.rel"
|
||||
"B76D55F462CCFD693DD31993943E6D7F04B82DAE","d_a_e_zm.rel"
|
||||
"9F9A22537970420CD8A3686F40B9FF6C90C2CC93","d_a_e_zs.rel"
|
||||
"B9C69B478A0D75AC3CE4061528823FF88C8C849A","d_a_formation_mng.rel"
|
||||
"2516C3D935127BD80099A7C77CE63FF2ECAABEFA","d_a_guard_mng.rel"
|
||||
"4E203991AB751AFF2199C20ED76BE74310AEB4BF","d_a_horse.rel"
|
||||
"DBDB321E2EAC89C16F2DCB59CFF5D42B2A69FD01","d_a_hozelda.rel"
|
||||
"2710FD69B5952F108A3E4DD86A20E717A512652B","d_a_izumi_gate.rel"
|
||||
"D4AEBEE8299C2EF0020DB654AB4369433E0F2D80","d_a_kago.rel"
|
||||
"7D32FA40CA609627A4083332FFDE0076FF1CA5DE","d_a_kytag01.rel"
|
||||
"B45D727581DF37CAC99AE6DABBC9D6614F953747","d_a_kytag02.rel"
|
||||
"10169AABCC557EA76F4A312D75AFE64570C2A1AC","d_a_kytag03.rel"
|
||||
"F9AC933DFAEF59F2D5917D959D2C542DE3BE96B9","d_a_kytag06.rel"
|
||||
"4A77254665CE96D64BE725C2EB8547AB24DEBDEC","d_a_kytag07.rel"
|
||||
"34F4886A03A2337F6C5F943EEF8F433FCE566C74","d_a_kytag08.rel"
|
||||
"0FD935A3F4E8763BC298FA08348AEC446BCFC005","d_a_kytag09.rel"
|
||||
"672076C0D23236C85827CC19432C6A28BB55FCA0","d_a_kytag12.rel"
|
||||
"4D2C5A3E793B70A06E1BD8E2D42D654275E4C8CE","d_a_kytag13.rel"
|
||||
"019DD0EEF225D4CDA826C311159EDFF4311EB14D","d_a_kytag15.rel"
|
||||
"DBAE37DF1335761A976B56D8D0CD3AC11ACD8D77","d_a_kytag16.rel"
|
||||
"5D232DC81A02B2A0C11CB50F51B4043DFFE82C28","d_a_L7demo_dr.rel"
|
||||
"5768F0EC62728FC49C6790E39F139CC50EE5847D","d_a_L7low_dr.rel"
|
||||
"10D761B98E18E447D48EAD97B762B26B4FA55DFE","d_a_L7op_demo_dr.rel"
|
||||
"6B084ACB24FDC4606A6F14FD8F785777A521D43C","d_a_mant.rel"
|
||||
"AECB40F35B5D77F419DB0AD612F497A9D6FA92DB","d_a_mg_fshop.rel"
|
||||
"857EDDEF52FF4913172E7A0E4FE5D8CA0E5DC4C5","d_a_mirror.rel"
|
||||
"A931EBD7F29BE04745E175066F5CB31FAC5E3309","d_a_movie_player.rel"
|
||||
"147159E931F6D9D5212A990E2F7BDC530BC3DFC3","d_a_myna.rel"
|
||||
"DB1737A9555DD21C69372849895706FA39767D75","d_a_ni.rel"
|
||||
"A0F69D08146E68DC7FB9F33682E30D4297295B0B","d_a_npc_aru.rel"
|
||||
"5CC511C732873509024FDF1BF7759641610864C9","d_a_npc_ash.rel"
|
||||
"65E7DF6AD0057736409AF0B9F681AC14F5E264F8","d_a_npc_ashB.rel"
|
||||
"C24090A559ED9C3DB43E8BE5D198D801AC435AA8","d_a_npc_bans.rel"
|
||||
"8C77D229853738C5D766C405645C8E82A2B698A4","d_a_npc_blue_ns.rel"
|
||||
"315BB79D1F7D5619321F9DCF29E91CF1C1F6EFB3","d_a_npc_bou.rel"
|
||||
"F4C9E0D68907D38F86863F6795DF973FEF364F87","d_a_npc_bouS.rel"
|
||||
"C27BA6D8A563E1FA30B279E3B4E966104055DE5A","d_a_npc_cdn3.rel"
|
||||
"81871F89AFDE615518690CD906294F0642E7AEA7","d_a_npc_chat.rel"
|
||||
"5A58FC4731B5EE0E56F5752B702603A85B8B81F4","d_a_npc_chin.rel"
|
||||
"6983F09621B04D9D0C8322F29C8FB4D6F2F5080A","d_a_npc_clerka.rel"
|
||||
"31E76C0CBEF53DAA87F3DFBAB586FDA93F18E7EF","d_a_npc_clerkb.rel"
|
||||
"48ACD1CAD599BF51AD939A574319608A77D91C8E","d_a_npc_clerkt.rel"
|
||||
"060698A76881879632EBDD25C80F80CA3D4C15DC","d_a_npc_coach.rel"
|
||||
"858262B644F0AD3E79C41EA6AD3CCCD1DF3D8AEF","d_a_npc_df.rel"
|
||||
"06ACE0D2CB1E812F62E1657BD3F3CB0C29A1D53B","d_a_npc_doc.rel"
|
||||
"6171B8E17477736E9FFD1D875A04C0BDBE4C1D1C","d_a_npc_doorboy.rel"
|
||||
"CF41932F85034FAF5211DD1F1059433E3E78AA2B","d_a_npc_drainSol.rel"
|
||||
"852B2D34FA7BB27B4C456E8EE591B6955635C58F","d_a_npc_du.rel"
|
||||
"771446C6ED4E459034ECC090773DD6FCB44944E2","d_a_npc_fairy.rel"
|
||||
"955A0AA7527C4AD6AA99967046812F92119F2048","d_a_npc_fguard.rel"
|
||||
"C24208BE125CB9CF58FA4A11361F1041564393CF","d_a_npc_gnd.rel"
|
||||
"07BA9D254DF9CB6B96B9DE08B1929D084A4B99FD","d_a_npc_gra.rel"
|
||||
"7A5FB80D806EDDF7C20B7051EA25F5E789DB84E4","d_a_npc_grc.rel"
|
||||
"770F5ECD8A508A2C9CCBB46B20B6771626E6CABF","d_a_npc_grd.rel"
|
||||
"3512C777B7300DCCCC59D5C7A3F894CCB0353491","d_a_npc_grm.rel"
|
||||
"0DFBB1101BAFF311C1A3D0DC60A97259CD6605FC","d_a_npc_grmc.rel"
|
||||
"1F8BAC5D29C8E7CDE938A8E806BAB8C708FE5232","d_a_npc_gro.rel"
|
||||
"3D19664843A61365A7A004F5669B825ECE2D1679","d_a_npc_grr.rel"
|
||||
"5059CB0B6CA6C5BC61A4CBC96B06A59C113C40B3","d_a_npc_grs.rel"
|
||||
"0E6BADFC97CE3AD244AC4ED0F4BEDF99465F7BDE","d_a_npc_grz.rel"
|
||||
"37C52DAEACE14C08F31B75C1106784548CFDED32","d_a_npc_guard.rel"
|
||||
"C9A73DD7D1809E6B3698AD46EAE70CCDB736DB6D","d_a_npc_gwolf.rel"
|
||||
"D3E410299B126532D45DF65D914029BEFA943129","d_a_npc_hanjo.rel"
|
||||
"E8F4DA7381506C21180F3C52200952D551D5CD0D","d_a_npc_henna0.rel"
|
||||
"1171BCA2DB9B73AAB7784DF2DABEE74D578436C8","d_a_npc_hoz.rel"
|
||||
"42A9A59054E4373A5B9AFC2DF94C264C21C2AA4B","d_a_npc_impal.rel"
|
||||
"63D504F55EA92FCA0AE5B8B904E4EA4AF2C39B53","d_a_npc_inko.rel"
|
||||
"5E949CCA4297B56293AA95873465147E8402145F","d_a_npc_ins.rel"
|
||||
"EC8BB1D14F8E6CB01458FA714F0FF98763F5F48E","d_a_npc_jagar.rel"
|
||||
"D149D5E56ED3ADB781611D4FA02847973EA3DDBA","d_a_npc_kasi_hana.rel"
|
||||
"F48395096573E20B0FBE2F52D6FF1F4B66C717C7","d_a_npc_kasi_kyu.rel"
|
||||
"E6375B3902E7E6A0140F301847153130DFCB8CE6","d_a_npc_kasi_mich.rel"
|
||||
"28CB531A70631F3B94A8D8DAA54587DA255510C1","d_a_npc_kdk.rel"
|
||||
"D90D5A3E097AA14236A4573CE60BBC432A9FC106","d_a_npc_kn.rel"
|
||||
"AEDEFB66C08539D45A1BACD0B96E082255D790EB","d_a_npc_knj.rel"
|
||||
"58530C4352D5BFF2EE3308B9AD8BF9DA4F80356E","d_a_npc_kolinb.rel"
|
||||
"D9A35B55C3A1307723AE59B0C915EDF8846187D3","d_a_npc_ks.rel"
|
||||
"1425AA779D35E77C4BCCFEB1CA4EE4B63F112B61","d_a_npc_kyury.rel"
|
||||
"347F617E71BC882682C3B32EDBE05D2D2283FF89","d_a_npc_len.rel"
|
||||
"B44FB518CC1EFFC8BFAA260DD7452C18383F3DB8","d_a_npc_lf.rel"
|
||||
"155B716F01B24223A8B8789B69140E1C7B65B616","d_a_npc_lud.rel"
|
||||
"0EAAD71622D7E0C0D8E37C7F22925BBA73AB0751","d_a_npc_midp.rel"
|
||||
"11A3D707F3DFFF9C90C32FB02C899FF7EA18CFB7","d_a_npc_mk.rel"
|
||||
"5DEA61797F9E0D8BE21BADD2475646D861BE6E26","d_a_npc_moi.rel"
|
||||
"D87686CFFC9973CAC00971D2AD163385AD012291","d_a_npc_moir.rel"
|
||||
"99D814708876522A98E45FD36CF0E2D621A70EF4","d_a_npc_myna2.rel"
|
||||
"778752B1A0F5F3C4D4379256FF6633D970B331FC","d_a_npc_ne.rel"
|
||||
"62A7793C9B38236A7A6848180DF0F7B93F0CAD7E","d_a_npc_p2.rel"
|
||||
"E38F315FAAC4E9A673C459CEAB71DF68BCB029E5","d_a_npc_pachi_besu.rel"
|
||||
"9BA517B048EBA36894F6DE14EFB01A7FFA8D9660","d_a_npc_pachi_maro.rel"
|
||||
"32A18DB8D4F376E6927B4DCF8649BADC54A65B87","d_a_npc_pachi_taro.rel"
|
||||
"756F697E528615E11E634F4DB01C5398B3BE2445","d_a_npc_passer.rel"
|
||||
"10A8C2E20959063469488C3DAF5ED983CA512ED9","d_a_npc_passer2.rel"
|
||||
"E3972B3E38161614E2968C66A99409FC3BE22A1C","d_a_npc_post.rel"
|
||||
"4C45EAEB8ED17B3E3AB6F7B44436AD03B6CE5134","d_a_npc_pouya.rel"
|
||||
"0B8BE32F32CD36F1A63F5A102AE3324B61B2C940","d_a_npc_prayer.rel"
|
||||
"831319B3299BB3222C6E46BE48986D2C4319F2ED","d_a_npc_raca.rel"
|
||||
"4C55DC0E05D97813657BAB578B2C6494AA4EC849","d_a_npc_rafrel.rel"
|
||||
"60106E049B39378F1F2610FD5DC107F121E5DDE6","d_a_npc_saru.rel"
|
||||
"436A1F6EC287BBC38D651C0506FD4921B9E3C0ED","d_a_npc_seib.rel"
|
||||
"7B76269687ECF5C88290C547194CD631463247EA","d_a_npc_seic.rel"
|
||||
"748F68425AC9D0BE63D05F5D28D6ED9AF58CD7D8","d_a_npc_seid.rel"
|
||||
"39A4E81C12EA364F19D416F15231AEB73B0089EF","d_a_npc_seira.rel"
|
||||
"FE12CF50B49CD20DD82052D3DA814C2F19152BF6","d_a_npc_seira2.rel"
|
||||
"AC7C43AA33642F26B9913DFDF302D1FDFE24CE40","d_a_npc_seirei.rel"
|
||||
"30E609A4BDD55F0F084397B122C970058B47E42D","d_a_npc_shad.rel"
|
||||
"5583E060CBED834E3CD50D57612400E05B5BD499","d_a_npc_shaman.rel"
|
||||
"75972E0AC5B38BF824F674CD66393460BCB4AA66","d_a_npc_shoe.rel"
|
||||
"4B42E7D5E7F474658F4D8B3DFDDF24645F4FD875","d_a_npc_shop_maro.rel"
|
||||
"C26638E69F35849A054BAB7A3BD6C24D6923EEF3","d_a_npc_shop0.rel"
|
||||
"17A56AAC1E2E03CBF892152012B93EE48ED7D9E7","d_a_npc_sola.rel"
|
||||
"112C68604B095E768CDA9D4C4BEE1D60655B9BBB","d_a_npc_soldierA.rel"
|
||||
"1E7E307865690D93DEC95354CB925EFF8740ACA7","d_a_npc_soldierB.rel"
|
||||
"52E4548D910B1E3104D38ACFF2A1FCE973B7D939","d_a_npc_sq.rel"
|
||||
"8EB0711679A89C792C5C7A538CC11CC20D20BAB1","d_a_npc_the.rel"
|
||||
"5A8E00B1C6A88A2D9299D5FBC9F36360FA880EE2","d_a_npc_theB.rel"
|
||||
"237647CE68026DB5A63D17C0A63163E11C5CA30B","d_a_npc_tk.rel"
|
||||
"AFDB3839D806F770DC2D25FA2D05F7FB7FD15911","d_a_npc_tkc.rel"
|
||||
"6A48547BB3DD2CA14BCEAFDA704C6E1C041BE02E","d_a_npc_tkj2.rel"
|
||||
"AF8F34B7E784C3A8EF2D3F4D29B1DEC76AD423C0","d_a_npc_tks.rel"
|
||||
"FABD4FADA4526BC3E7030575621BE07C47E77704","d_a_npc_toby.rel"
|
||||
"EA9F95EF4857902706CF32453C51C4FC93484CF4","d_a_npc_tr.rel"
|
||||
"0917529F1B2D55B6C98A54FEB87799C512C08C5C","d_a_npc_uri.rel"
|
||||
"63D7963189A5FFBA8849B800E39D0EB44E37FC60","d_a_npc_worm.rel"
|
||||
"944D1EF9969538EBC9E5ABE480AA1D804F82F6A8","d_a_npc_wrestler.rel"
|
||||
"E4E43A08DF9F2BE1ECBE77072E14AB58A99A3D58","d_a_npc_yamid.rel"
|
||||
"5B2783D393F82695BA664C98CBF26B71912EFBBF","d_a_npc_yamis.rel"
|
||||
"053C4338FD62CC42236C53D7E64F190E4B2A81BF","d_a_npc_yamit.rel"
|
||||
"E36BC51C80F25F9DB7BAA208D1D9D0B4C1EB3D89","d_a_npc_yelia.rel"
|
||||
"A3A6F88D8F58989DD9E724E18DBF9293230B49C6","d_a_npc_ykm.rel"
|
||||
"76EE59945CA89E33ABFFE30FF7B41FCF973BBA21","d_a_npc_ykw.rel"
|
||||
"A1380E0C3CD3C35E61CA59E11FE027225B003635","d_a_npc_zanb.rel"
|
||||
"B86CD8201781B6527A71E0851905DC812545D8C3","d_a_npc_zant.rel"
|
||||
"ED2B61B282862E431CAD32035695B37B349A97C1","d_a_npc_zelda.rel"
|
||||
"4265B6402F946CC23BE042495728BFF8800B1A68","d_a_npc_zelR.rel"
|
||||
"CFAF808A0A35B7A46ACD6B8C013ACF6BA72146AE","d_a_npc_zelRo.rel"
|
||||
"2F07CA8708B0A78F45406575D3A46247EC08D413","d_a_npc_zra.rel"
|
||||
"089B3C7EFCF920718D8EF4C66D6B6E91BB5B5D3A","d_a_npc_zrc.rel"
|
||||
"147373E64B382F21040F8BD6224979279BADFE34","d_a_npc_zrz.rel"
|
||||
"8E6B7BC6E094DEBB430607CD9364C502AB962800","d_a_obj_amiShutter.rel"
|
||||
"A3F6E97A7CB56BC402816979304E06A9D8877772","d_a_obj_ari.rel"
|
||||
"6DFBC2A4D70F05058874B5F03BA26D66D68EA9D5","d_a_obj_automata.rel"
|
||||
"F8866BDCF1ED0CC0E45680E1945CE2F9E18F36DC","d_a_obj_avalanche.rel"
|
||||
"1D800CA650D91893BBE03EB30E10263CAD094B0D","d_a_obj_balloon.rel"
|
||||
"A27E27D2B614DD514C1F60BD2E426AD373CBC687","d_a_obj_barDesk.rel"
|
||||
"1FD4DE73CF6F314738AF3B4F24AFF00405D228C1","d_a_obj_batta.rel"
|
||||
"F7DBDE0A7354BCB1A87C0D2DDEC7BD48A80B41E9","d_a_obj_bbox.rel"
|
||||
"F0FB599FAA59D45F020486652A6D0C3F4FDC7B55","d_a_obj_bed.rel"
|
||||
"CBE8D6BE9FFC4F9C217A42777B2795267F18ED03","d_a_obj_bemos.rel"
|
||||
"4A307732FF244743B849B4A85F31BED099087506","d_a_obj_bhbridge.rel"
|
||||
"D0A037C463EA1E6EB7A682CD3B67E6FC22FD4E4B","d_a_obj_bk_leaf.rel"
|
||||
"24B08DE6343F5055A26BEA76E08B9E92F59D7883","d_a_obj_bky_rock.rel"
|
||||
"4D7E4316612FB5D01BBBF34F921B5E1A2FC56D16","d_a_obj_bmshutter.rel"
|
||||
"010D8B8B21D9024C380FB88F4EE7E526924BA991","d_a_obj_bmWindow.rel"
|
||||
"C636967F4DDA971C4AE8F81BA2A586AA141E9BCD","d_a_obj_bombf.rel"
|
||||
"567132294F46E451A228CB5E27D5441C1002E725","d_a_obj_boumato.rel"
|
||||
"D1966C75EBAA8F74BC77A6AD90732E78F878C97B","d_a_obj_brg.rel"
|
||||
"0664AC9A85C4E5FEB0E5014F1CE83676246BBFCC","d_a_obj_bsGate.rel"
|
||||
"28C46C35A8BC0E85AEE81B036BC6A9BD984FFF24","d_a_obj_bubblePilar.rel"
|
||||
"E4F7A1306FD61D8DD58CE1417429393EC4050F21","d_a_obj_catdoor.rel"
|
||||
"4704E2FC0C1C9A0E46E3673BA42F6F8BC46EF629","d_a_obj_cb.rel"
|
||||
"523C070B27D87FDD633B8CB8D30DC397AA5D1674","d_a_obj_cblock.rel"
|
||||
"A2B67AC2DC108A530573803B12C58E0642196B99","d_a_obj_cdoor.rel"
|
||||
"E8BEECFE7E519B95ED7F52DFECC70DC76945DAED","d_a_obj_chandelier.rel"
|
||||
"F69D071883106072EDBBFB6BC95B5AF17A7F8C43","d_a_obj_chest.rel"
|
||||
"7314A81F6DA6BA84E8A14EF2889870ED8ED89CDE","d_a_obj_cho.rel"
|
||||
"7563F37577AC0FFF3011FB586F6B2BF0AF7442F1","d_a_obj_cowdoor.rel"
|
||||
"DC4300A41663850324AD72298F004ABAA47CF5FA","d_a_obj_crope.rel"
|
||||
"C86BAE0E3DBE7BE7E597A8B393B36F8C6798580C","d_a_obj_crvfence.rel"
|
||||
"AF57D1CB4E497AFEBCC91D803FA4BF0F504DD9E9","d_a_obj_crvgate.rel"
|
||||
"472A4DFA5572DE1B63956EFD9943F99CFD6373DC","d_a_obj_crvhahen.rel"
|
||||
"6D602998612DAD842948EFFA4EAAAEE06A42935F","d_a_obj_crvlh_down.rel"
|
||||
"904E695B69E01BCD9C9F3113F847F9864AC575B6","d_a_obj_crvlh_up.rel"
|
||||
"FB613745F6712D06CD90B1EED03246ECC35BBD82","d_a_obj_crvsteel.rel"
|
||||
"2DECB0B34B64395F4AA515DE8A4A7407A2759417","d_a_obj_crystal.rel"
|
||||
"6FBE5964CAE388026838CD4917EC05BB46157164","d_a_obj_cwall.rel"
|
||||
"80B924EAEC011A7614F961D9A0492A062429B6EC","d_a_obj_damCps.rel"
|
||||
"7DD1357FEF8C100530199EDF76D1EE9A5899E09B","d_a_obj_dan.rel"
|
||||
"C1C9DFE76598206DDF99A635334AA8BCCC25CA59","d_a_obj_digholl.rel"
|
||||
"0C471AB3E846EC4D82F61DF8B60413EF6AC07388","d_a_obj_digsnow.rel"
|
||||
"D5B4A6C9DBA147542CBB8829F31D9ABD3620BC48","d_a_obj_dmelevator.rel"
|
||||
"9C6223018EE1910993EDDD19CBC1A676D737A902","d_a_obj_drop.rel"
|
||||
"21F40C3835B4A355BBB15E9196CB9CC234E0838F","d_a_obj_dust.rel"
|
||||
"91437F1C6E88D20AABA581166AAC2BFE49C62155","d_a_obj_enemy_create.rel"
|
||||
"1D4341B1F9851F851633BB72F88267F6A2E8A933","d_a_obj_fallobj.rel"
|
||||
"776A1A296EC976346DCD86FDC780D15BA68E4C30","d_a_obj_fan.rel"
|
||||
"C06F7411914FEAD2FB5FDE85BD0FBDB2B0B385FE","d_a_obj_fchain.rel"
|
||||
"686F236D8F6B5DCFE88B615D032F01394AA2986D","d_a_obj_firepillar.rel"
|
||||
"C1514151905A84AE316A3FDC5160E4A3CA0B36BC","d_a_obj_firepillar2.rel"
|
||||
"06A80D6623EF6735ACC6501CDC4A09CFCA801CA6","d_a_obj_fireWood.rel"
|
||||
"E07069778C4347F5F342DE23D77B090B05710E38","d_a_obj_fireWood2.rel"
|
||||
"EAA0E09581908521D2DF5FB729497D10DB819F07","d_a_obj_flag.rel"
|
||||
"E964758B4BEDB2108A29C26D02B5B0527C069884","d_a_obj_flag2.rel"
|
||||
"A23D52B33EC7CF517EB798B0C1645568812793AD","d_a_obj_flag3.rel"
|
||||
"6DE245B93F471A65F80E2598495804DC25B37530","d_a_obj_food.rel"
|
||||
"EFC6E7CAA25EAA2C69868132D7BEC857C3133278","d_a_obj_fw.rel"
|
||||
"0C3A6FFD32FDF49F01BEA15DCED0536FF32B2B1F","d_a_obj_gadget.rel"
|
||||
"CEA1E292EB2671E0D449468228509C221FE238E9","d_a_obj_ganonwall.rel"
|
||||
"0B2AE3E122627D9D446CB7342ADEB76C90F83BF2","d_a_obj_ganonwall2.rel"
|
||||
"E9C45749EE3F0670241B9E4057925F5039EFFE48","d_a_obj_gb.rel"
|
||||
"2D4FAA86812F920A8A93734C98A8047254820911","d_a_obj_geyser.rel"
|
||||
"C9E5CD04324D0B2D72667707AE22ADEEA2ECD6C0","d_a_obj_glowSphere.rel"
|
||||
"783401E99CD2659CFB538F773B7DEA2D84188374","d_a_obj_gm.rel"
|
||||
"0EC0E55DAB5A085566B9904DE0CB618FA0601F22","d_a_obj_goGate.rel"
|
||||
"CF32E0BCE5C74A4D5008D7A2CB0F0D8CAABAA288","d_a_obj_gomikabe.rel"
|
||||
"6392A8AAC7C216104B398A3C32127FFA98204047","d_a_obj_gra_rock.rel"
|
||||
"FFC2A2198CD570B34D367D9652E84BF8B03C60ED","d_a_obj_gra2.rel"
|
||||
"CAEBCE00942CF3D295AEBE0D1C6F96D8B524F228","d_a_obj_grave_stone.rel"
|
||||
"E429791CC10CA6E653F10312DF57426DD4C5B395","d_a_obj_graWall.rel"
|
||||
"BBDE04D5DC9D20CCB5607B16BEDA4821EEC2DD41","d_a_obj_groundwater.rel"
|
||||
"7FEF7D03425497EDE843C8620ACC94571B583A48","d_a_obj_grz_rock.rel"
|
||||
"A52B6FC32D356E19EE39ACFC6C4AFB6AF4E81FAC","d_a_obj_h_saku.rel"
|
||||
"91FD4F4546A0457EC53AD1B607C1B4FDFBDF68F4","d_a_obj_hakai_brl.rel"
|
||||
"0FC8A311760A0FB66E9C1B9A5C8CA18F6A4A109F","d_a_obj_hakai_ftr.rel"
|
||||
"963ECF522BB4B40A21154B6A740C6160F5EEFC68","d_a_obj_hasu2.rel"
|
||||
"DBBCC363C61D212B7EA7E73F4E3635E7FE21D96B","d_a_obj_hata.rel"
|
||||
"3665E4CEAFF44720CA854AEE74EEFD1447E13931","d_a_obj_hb.rel"
|
||||
"F3C7954649C32DB792FB2EE420FBBFC27BE6225A","d_a_obj_hbombkoya.rel"
|
||||
"CBC6C1903EB978124CFA2138A433BDC6831245E5","d_a_obj_heavySw.rel"
|
||||
"81A3335E375BB103C9418E9B8809405992363ABF","d_a_obj_hfuta.rel"
|
||||
"86CAEDDB6398F2BEF95ECE12BB7D7D7E7284F9BE","d_a_obj_hsTarget.rel"
|
||||
"E483FB2DD764CD2C0A20388E4D7977B3AB4BC456","d_a_obj_ice_l.rel"
|
||||
"D2E815823DCDC802E417DFB94CF92DD536A2CE65","d_a_obj_ice_s.rel"
|
||||
"AE5B7BD9239E6ED21770B54B91A2D9CDF7C6C1DC","d_a_obj_iceblock.rel"
|
||||
"69669F62B8D90082A5C06FFA36E91F30BFE9C06C","d_a_obj_iceleaf.rel"
|
||||
"B29DAA777A035C9036EE841C9BAC10F867A655FD","d_a_obj_ihasi.rel"
|
||||
"E6B780F90357F10F6AF2F5F19FCF9BDCE89BE83C","d_a_obj_ikada.rel"
|
||||
"0889E4303069CD7914BA27D9483FA73E8C137954","d_a_obj_inobone.rel"
|
||||
"53BB8ADEE6D73548DF36F47614591C292C65A501","d_a_obj_ita.rel"
|
||||
"6E17719E2E831D6FD34C069EB6CD3C9CF9306819","d_a_obj_itamato.rel"
|
||||
"093D65B63EB8CF2F1A7FCB68105928B316AF3DBD","d_a_obj_kabuto.rel"
|
||||
"46C44517440489F056C3ECD24DEB6C766E238012","d_a_obj_kag.rel"
|
||||
"6440097C035AF011A8E47E32D69532B649600E23","d_a_obj_kage.rel"
|
||||
"9CD026746F50AB7DC810EBD022DD89BBD1AB05A8","d_a_obj_kago.rel"
|
||||
"14A672D1ED97EF533BABD5ABA8F4BDA0508CC0C0","d_a_obj_kaisou.rel"
|
||||
"18C316BA8C5E2B1D4C23B90CED94901DA94A32CA","d_a_obj_kamakiri.rel"
|
||||
"156FF8944FA1BEDB272543E350B88342224645E1","d_a_obj_kantera.rel"
|
||||
"641A1BDA45020122996F8CF6AF8B916DA57A728B","d_a_obj_katatsumuri.rel"
|
||||
"1ADA72286D3B56918BF472265F63425E439AB51A","d_a_obj_kazeneko.rel"
|
||||
"01904FC16812D689B7494DA4F8FE7064F0E7B212","d_a_obj_kbox.rel"
|
||||
"DD3C3C14EFD09F02A423AD10F3F1A4E90204DDA5","d_a_obj_key.rel"
|
||||
"DC821A03F47DCBA72C8031E58C0034E2B24859F1","d_a_obj_keyhole.rel"
|
||||
"BD610B5E1FAD869B157D39BFDEDA9E87F797FF95","d_a_obj_ki.rel"
|
||||
"E8D7840E492D18726B34E4FFB4ED5695F9E37DB1","d_a_obj_kiPot.rel"
|
||||
"0688E31A09D99F77B7A01945A47F7D2425C755B4","d_a_obj_kita.rel"
|
||||
"70482127A36280A0723AE7DA76C42F5678606DBA","d_a_obj_kjgjs.rel"
|
||||
"76D0B401BE39DC1F18F03713D837831905C669FA","d_a_obj_kkanban.rel"
|
||||
"CF0E62EB9AD9D57B337B86E2F26EDBF8BD5DBB11","d_a_obj_knBullet.rel"
|
||||
"F225EDB33E365FFD6F79F7E8255C0F6149D40544","d_a_obj_kshutter.rel"
|
||||
"3E40D37275448FF27BCD8EC6D941665C95A9F908","d_a_obj_kuwagata.rel"
|
||||
"58B43E9DC920D7AF79EFFB750FA104F2D9BED1A6","d_a_obj_kwheel00.rel"
|
||||
"C06A5219ED7A8EDBB0A77A67F68C3173D52730B2","d_a_obj_kwheel01.rel"
|
||||
"3B0C06C022D6E379254E5656E57999E2B3D1FAC6","d_a_obj_kznkarm.rel"
|
||||
"538F91F01A9DB44A1C9F766C955AB0F9B4ABB205","d_a_obj_laundry.rel"
|
||||
"D66373CEC8D2D841B4235F8F3EA33918220AFA72","d_a_obj_laundry_rope.rel"
|
||||
"44D67C73086A686EE7A1AD691B79BF810FD7A669","d_a_obj_lbox.rel"
|
||||
"D275504F15B5084685186FF7B1C9AFE0DF4EB865","d_a_obj_lp.rel"
|
||||
"5F8C9C5CDC98D0525D70293A49B1F0B1F8638391","d_a_obj_lv1Candle00.rel"
|
||||
"4657CBE18EDB06D0F95788AC1B9F5D8AE7362488","d_a_obj_lv1Candle01.rel"
|
||||
"21A9C38704D93AEC5E06A8F34C3CA0CECAD07CEA","d_a_obj_lv3Candle.rel"
|
||||
"F25D8701FCF116BAE7A6C54B80CA19C2CCCF6442","d_a_obj_lv3saka00.rel"
|
||||
"28912A6E826E70DA0E71BDBFEAA73F6154356A93","d_a_obj_lv3Water.rel"
|
||||
"25311FD64E35E9FE83077DA3000188C628A9D029","d_a_obj_lv3Water2.rel"
|
||||
"8D3150A764110CF258705AAC9D22DE0A81535304","d_a_obj_lv3WaterB.rel"
|
||||
"F0971936E0A9CAC2735D469B01CCA41BE0F5E411","d_a_obj_lv3waterEff.rel"
|
||||
"812243A91AF29C45CA797A10C9719B17FECC3793","d_a_obj_lv4bridge.rel"
|
||||
"97CC3C734AFAEE6F544AB22A625EAAFB42693323","d_a_obj_lv4CandleDemoTag.rel"
|
||||
"D880E6A26B6353835C6A7CE52BC90047B3D21B28","d_a_obj_lv4CandleTag.rel"
|
||||
"3A19942FB9EC3E3D2E4B322D5C28A3E6678274C8","d_a_obj_lv4chandelier.rel"
|
||||
"481C498D70C653514C3E784952710312936ADEC6","d_a_obj_lv4digsand.rel"
|
||||
"EC9171E061DC6D8F71AD422E43D14CE8820725A0","d_a_obj_lv4EdShutter.rel"
|
||||
"BB67106ABB1D791B0F2BE5ECA33ED438B34ED1D5","d_a_obj_lv4floor.rel"
|
||||
"F20B986A600C4A6D8E716560ACD340FD7B2CEC63","d_a_obj_lv4Gate.rel"
|
||||
"0A93059311DF8AB16DC9A404F3DAE01CA47F6EC3","d_a_obj_lv4gear.rel"
|
||||
"FAC83D41C43DD6BA50E0D49FF2F3C755D265580C","d_a_obj_lv4HsTarget.rel"
|
||||
"BB8ED430CB005B5B5D8BA9ED2AE835BC838B1DEF","d_a_obj_lv4PoGate.rel"
|
||||
"7129A7C076ADE058CC69129532A008DCB112940F","d_a_obj_lv4prelvtr.rel"
|
||||
"5E4527488F668088EDE07AB2CF4713810C9A8C62","d_a_obj_lv4prwall.rel"
|
||||
"8C0348948D94650B4A091779CEC78C64B7020C71","d_a_obj_lv4RailWall.rel"
|
||||
"0D14D26489E8E92A18835E91F2EF766B9E6D7B65","d_a_obj_lv4sand.rel"
|
||||
"BE8AEABA797494C414E12B884F0DCD48D3AC7164","d_a_obj_lv4SlideWall.rel"
|
||||
"B0C8E2B573C1DAB74CC499D63C1DB48BBEFD5099","d_a_obj_lv5FloorBoard.rel"
|
||||
"EA56159D3388F8B86D9D5195AB262D3C98CD7BF2","d_a_obj_lv5IceWall.rel"
|
||||
"346D99F5C90219C815CA8C48D751708A7FB1DC44","d_a_obj_Lv5Key.rel"
|
||||
"970B54E52DC0263AB7E9077F771649B95274F203","d_a_obj_lv5SwIce.rel"
|
||||
"83FF4A28494BBBC42DF23B7FCF75DF8D44F8FBE1","d_a_obj_lv5ychndlr.rel"
|
||||
"1F4986C0986FB71B02498E2DD88D8AD56689C601","d_a_obj_lv5yiblltray.rel"
|
||||
"1F98E050E735B69B15C572DF27B75B4E2D242504","d_a_obj_lv6bemos.rel"
|
||||
"6A4D3E21E582EA923564DD8A0319441980698394","d_a_obj_lv6bemos2.rel"
|
||||
"30AC71524DED4EBADE99B18D378ED6E77ECC2ACE","d_a_obj_lv6ChangeGate.rel"
|
||||
"5F059A8677CCDC9784114F5179426ADB9B01380C","d_a_obj_lv6egate.rel"
|
||||
"60FDC030610AC9C0C847BE318C29DF522C611867","d_a_obj_lv6elevta.rel"
|
||||
"F9FF87DFBF9F140AED458D87312F0974D3F088F8","d_a_obj_lv6FurikoTrap.rel"
|
||||
"408CA5D602EC0CFC2CC240D91B96CDDF9B14EE08","d_a_obj_lv6Lblock.rel"
|
||||
"2F572729258E3E90A33F6285C08514A0079D163C","d_a_obj_lv6SwGate.rel"
|
||||
"1867CE9B871B31D447EE6907A3562259DA107E89","d_a_obj_lv6swturn.rel"
|
||||
"F067D7DF7959A9E64AC481F0D9FE254BE6EA8C39","d_a_obj_lv6SzGate.rel"
|
||||
"65D974EE2F6ACCFAFC63C6D1839A2A585903CDD3","d_a_obj_lv6Tenbin.rel"
|
||||
"9A2D18F7FECFEDFCE2ACE774C36F672D09AC325B","d_a_obj_lv6TogeRoll.rel"
|
||||
"4799FE0B07BCC77B683E768D78D85E9E37F3FE12","d_a_obj_lv6TogeTrap.rel"
|
||||
"F4AAFD8CD7FE7F4C02AC09D9813CED1EC6397CDE","d_a_obj_lv7bridge.rel"
|
||||
"494004BD260D2D7FAC4FD8F34E13B66148D55C0A","d_a_obj_lv7BsGate.rel"
|
||||
"FB7A62ABDBDC70E9E2F819596432D6384D442ECB","d_a_obj_lv7PropellerY.rel"
|
||||
"177631AD03D1EDE1D846D86A78612638D8F153B8","d_a_obj_lv8KekkaiTrap.rel"
|
||||
"0350D3E5E8B404B1ADCF53F1AB35CBA27C619580","d_a_obj_lv8Lift.rel"
|
||||
"5DCD03E045CC3FA09CB902040773C97A0B6204C8","d_a_obj_lv8OptiLift.rel"
|
||||
"529E48FC87176D84E634D77DD32155C1ACA65CD1","d_a_obj_lv8UdFloor.rel"
|
||||
"91D6B4E916E77413CBEC9C1DDC93135634C57B40","d_a_obj_lv9SwShutter.rel"
|
||||
"B1561F39FBFC1AFE1684BD3C046A7B402FD77851","d_a_obj_magLift.rel"
|
||||
"433CA28006AF27F2DFEFCA6EA3EED45CF5A52D3D","d_a_obj_magLiftRot.rel"
|
||||
"71310A1C38F91411F30420AE3EAF16DABEA99BE7","d_a_obj_maki.rel"
|
||||
"A9A8F90F7EBF6B79FB92613E3FB7650B669B958D","d_a_obj_master_sword.rel"
|
||||
"79FFCBFFEC6CA9AF067BEC16E1238EB01AE10E33","d_a_obj_mato.rel"
|
||||
"369B1DA1A6EE019371941915040E0B027759EC3D","d_a_obj_mhole.rel"
|
||||
"33DC90BD91AA7D820081F33EA92E8D0C665A9C67","d_a_obj_mie.rel"
|
||||
"0E01A3107E03EE7D34E15321B45684EF068129A0","d_a_obj_mirror_6pole.rel"
|
||||
"BE5F1E1631317E32F3ADE0C7636136C96489B280","d_a_obj_mirror_chain.rel"
|
||||
"7C6550EBE284CB50B330A127B59260AC668670CE","d_a_obj_mirror_sand.rel"
|
||||
"DCD917AD581DAED8FBF4DE4FC29C0B9C9EFA59D8","d_a_obj_mirror_screw.rel"
|
||||
"DE75BEAA769F30E9C63BE98CB3D188AA49BFF5A1","d_a_obj_mirror_table.rel"
|
||||
"AE1F53AFCA10DE654FFCF56C88F5B58C8F87E635","d_a_obj_msima.rel"
|
||||
"888150C9C93720A4C78D7FD0014387A5FDBFCCA0","d_a_obj_mvstair.rel"
|
||||
"2827303B423FF79D410188C9C1C352EC39E88CBF","d_a_obj_myogan.rel"
|
||||
"490CC4E869384D3FE587D56E0DD364C87A7D5162","d_a_obj_nagaisu.rel"
|
||||
"91D20D5A484AE07F02956464807CFE0BCF5CD287","d_a_obj_nan.rel"
|
||||
"263EF49FECD2B55209F3679C1806E1CC9DB53263","d_a_obj_ndoor.rel"
|
||||
"D040E9A5084BABB2F016693E3BBDE2917CA10A7A","d_a_obj_nougu.rel"
|
||||
"53B8C868712E9FC730A390E6ECE51091A8916FAA","d_a_obj_octhashi.rel"
|
||||
"DC45740FAFE80F3F78F7844D45570C80FB730DFB","d_a_obj_oiltubo.rel"
|
||||
"7059C9E19FF0223ADBBDCFE2045256489A920B43","d_a_obj_onsen.rel"
|
||||
"E229A026DEA509C95996F0245357DCF90A2FBCAD","d_a_obj_onsenFire.rel"
|
||||
"FE5830E76B8F2748380CDC6F2A90E64EAE60C9DE","d_a_obj_onsenTaru.rel"
|
||||
"C70D750A8ADB798F4EA366861153335865985D8E","d_a_obj_pdoor.rel"
|
||||
"E7496705B786B250D2509C16FDC968F9E63B0C69","d_a_obj_pdtile.rel"
|
||||
"555AC0D10D428594900A05D42B3955158EBDC17F","d_a_obj_pdwall.rel"
|
||||
"CF49999B47D73343863D57907F926D99E320FC9A","d_a_obj_picture.rel"
|
||||
"22CE01FF188752D93BEFA4C50782859347814852","d_a_obj_pillar.rel"
|
||||
"29C651E484A27A6C1BDD9CA3040BC5F427B25900","d_a_obj_pleaf.rel"
|
||||
"3649EAA8F60539CE7E0DBCBBE79D7DE30CDA12FA","d_a_obj_poCandle.rel"
|
||||
"34E1394FAFA19C4BF21E048DC32D824A084595D2","d_a_obj_poFire.rel"
|
||||
"02C9E127F1F8C4752D8FEC40CB96644B2353A63A","d_a_obj_poTbox.rel"
|
||||
"C9BAC70E74CDE774874745D928F8D5257CBF29E3","d_a_obj_prop.rel"
|
||||
"FFD7E1636878E9F43DF25D90A987E8D47510719B","d_a_obj_pumpkin.rel"
|
||||
"509FA8C42A2750198405386BD547C678666960B8","d_a_obj_rcircle.rel"
|
||||
"2478DBD7BAE7015C1F3AFBB16D66A9F72A1ECC05","d_a_obj_rfHole.rel"
|
||||
"F2F730BC91E14C40BE006C8F2048E1FF7FF5915B","d_a_obj_rgate.rel"
|
||||
"2D4E87DF6721ACD07A8E43C5E8165744E4C3E4FF","d_a_obj_riverrock.rel"
|
||||
"20115D37BD1A8669C4719301E25F9DF67860A9E2","d_a_obj_rock.rel"
|
||||
"875313B7CA3635CD58DAA4135F2DBDB78B8C671B","d_a_obj_rotBridge.rel"
|
||||
"02798D540EBD5A181FB8B2CC5C566EB70F2332AF","d_a_obj_roten.rel"
|
||||
"C7EEFCB168FAC2D08F151D9770D0100139D6E1AE","d_a_obj_rotTrap.rel"
|
||||
"144B96211EB77BEE34CF1DAB46D593E64D78F723","d_a_obj_rstair.rel"
|
||||
"B4A7D27A83E4E5EB8F11BB94D4D6764006B33D90","d_a_obj_rw.rel"
|
||||
"9BDF2158AF4DAFC1B5973EDD9D02A3D1E56031A7","d_a_obj_saidan.rel"
|
||||
"4A68E0150C4AB0C545321E283FB83272ACEFD97C","d_a_obj_sakuita.rel"
|
||||
"2780457F8D017D649005FF432518D893781A520E","d_a_obj_sakuita_rope.rel"
|
||||
"861575980F36CD8D629189EA79CCBABE2AA2675D","d_a_obj_scannon.rel"
|
||||
"DA6CEC7110B0517134E7F47D8C5DB856E44475F5","d_a_obj_scannon_crs.rel"
|
||||
"1B91EE7A761DC04ADB27F8D7FA813D3AFE227F04","d_a_obj_scannon_ten.rel"
|
||||
"51BDC2618F8D054DD08063BDB72385883F8F62EA","d_a_obj_sekidoor.rel"
|
||||
"2D3032A2B2EAE24FB1BB55434D5DFF8D16E594F3","d_a_obj_sekizo.rel"
|
||||
"518527CE198D6B6046217B1181624CFE3D3603B7","d_a_obj_sekizoa.rel"
|
||||
"C12D434E70652B723488E614339363248CA1981E","d_a_obj_shield.rel"
|
||||
"96167AC7CA08DB0678535F49085553FFA3DF7B4F","d_a_obj_sm_door.rel"
|
||||
"3496EFF62F65196A34B5A987CC23A788243F63F0","d_a_obj_smallkey.rel"
|
||||
"1A8EF8F5A99F9D74FB71CF8D0A7DA0D9F69EE369","d_a_obj_smgdoor.rel"
|
||||
"1117BC92D9B1D8A9538D10072BA52744477A85C9","d_a_obj_smoke.rel"
|
||||
"1C89D6D9BCC7F624D05382BC902145D6C707BE55","d_a_obj_smtile.rel"
|
||||
"21A849A0357996AB647A412F64238691100D56D4","d_a_obj_smw_stone.rel"
|
||||
"CF9F688D53A37F3149735250AD2CDE9A3DC53000","d_a_obj_snow_soup.rel"
|
||||
"810D1BAE5AD823D4171EB417985C0EACB23C5E22","d_a_obj_snowEffTag.rel"
|
||||
"1BCD37C86F820A581480D509365508AFCB28DDFD","d_a_obj_so.rel"
|
||||
"D4EDA5F1AD329E65B6D727C69FEDC617E142F0F3","d_a_obj_spinLift.rel"
|
||||
"5A3DF887CA5FF2C3E8487FD2771CC472A365E122","d_a_obj_ss_drink.rel"
|
||||
"2C0F4BBB3E3BE695F2D7A4F61EC6FAB4C8A4C320","d_a_obj_ss_item.rel"
|
||||
"B75D7A31AC36BD2975C9152460F498AAA2A0F354","d_a_obj_stairBlock.rel"
|
||||
"67B3B11BE686377489548F19915F499643507042","d_a_obj_stone.rel"
|
||||
"9F7F45C76F398B68B624CE18E79A3C1B938BC09C","d_a_obj_stopper.rel"
|
||||
"3E176DDD51A928DFDD2FD1298B39D65FECC696AB","d_a_obj_stopper2.rel"
|
||||
"C8D5B30FB124099C1930460E1815AB9C1CEE23AA","d_a_obj_suisya.rel"
|
||||
"9F2A201E5D576AEF3EC9007937C932D8252379CE","d_a_obj_sw.rel"
|
||||
"0002C394755A39468C9D028295A3A273512E89BC","d_a_obj_swBallA.rel"
|
||||
"DA34E2D03406DC539DF538F9709236FBFC9C034B","d_a_obj_swBallB.rel"
|
||||
"DED5E596BB913D865371ED558F50D99EAF630104","d_a_obj_swBallC.rel"
|
||||
"ED381DD3BF359878C116FA1D6EB08AF039576979","d_a_obj_swchain.rel"
|
||||
"9FBE5A6CA15581C3BD765FFD839219E067B5CC81","d_a_obj_swhang.rel"
|
||||
"8EE15C9C80656AB121E7FC5BE889FDFF0C5D76DC","d_a_obj_swLight.rel"
|
||||
"D01643C4444121A8EF8B5DF5F3191C949E808451","d_a_obj_sword.rel"
|
||||
"308244F76A24414F413A968591DBF453C7E38A74","d_a_obj_swpush2.rel"
|
||||
"3CCEDBA2AF37F1C94E1187FE02D0113641BC927C","d_a_obj_swspinner.rel"
|
||||
"0F2CBDB33705F8FA6F3D81D236B4EB9A9EC171C1","d_a_obj_swturn.rel"
|
||||
"9C677E794D4BAC7C9C873431D7615267C0887E24","d_a_obj_syRock.rel"
|
||||
"5B13BBD455BBA01F20A095346D6078742AD88E40","d_a_obj_szbridge.rel"
|
||||
"A321ECC34662C8F084BED14E03BBF56A2D0ED9B7","d_a_obj_table.rel"
|
||||
"EBBFD99842E03EAA06A1ED5A281EC2BA8299AA63","d_a_obj_taFence.rel"
|
||||
"EC2A5579C6FBEE5AE59B8AC7BF17602BB2963D29","d_a_obj_takaraDai.rel"
|
||||
"4560DDF21E501B0B267CC30534ADC946FD828E33","d_a_obj_tatigi.rel"
|
||||
"DD99A1444A2FF29D9AA8E8F8088D629482638739","d_a_obj_ten.rel"
|
||||
"37990390B9E0790D389DFEE25EA96DF08C28D2F5","d_a_obj_testcube.rel"
|
||||
"C6CB86BE803A905CE310F9DBA6A1428F50E4C841","d_a_obj_tgake.rel"
|
||||
"2A85605C4C3E2CFFDF6F737290F3CD5CFE6FF8E4","d_a_obj_thashi.rel"
|
||||
"3D3193784C69E450BD5B031A7D8D83C088FBF623","d_a_obj_thdoor.rel"
|
||||
"E1244D6275911E019E58FAAE68C604916DE0AFF8","d_a_obj_timeFire.rel"
|
||||
"FCC49655429F928E00C4987CFDFEEC543802E284","d_a_obj_tks.rel"
|
||||
"FB1E8D6AD5F8770F7B8CAF6734BF94E5E3B7AD2B","d_a_obj_tmoon.rel"
|
||||
"7C3C1DD4C47D69AEA5988B1529F44D40CD543918","d_a_obj_toaru_maki.rel"
|
||||
"D07A38632A2BB32B7BD3DC2B6B41364EC6384850","d_a_obj_toby.rel"
|
||||
"7B79C550AC74A2C587A4F99A193895C6300F536F","d_a_obj_tobyhouse.rel"
|
||||
"092509DC19CE6F5E86796A9CF06713E96DB46EF4","d_a_obj_togeTrap.rel"
|
||||
"05FEEA079BE389BD4A629FBC1EC42D89AC8F7723","d_a_obj_tombo.rel"
|
||||
"B41F1B85C335FB3F949E7967BCD1353F9514151D","d_a_obj_tornado.rel"
|
||||
"A6CC3C7E7CBB951E7ACFBF0EAA0D76AED304DBF6","d_a_obj_tornado2.rel"
|
||||
"60633D098B39F32ADF8D87B72A43816189D4FA66","d_a_obj_tp.rel"
|
||||
"2B7C1E7C0ACC7DDFE8531380A195CAD4163D1BAF","d_a_obj_treesh.rel"
|
||||
"D458AA3CE8D4FCD19B4436CEA8E1048B84AA9F36","d_a_obj_Turara.rel"
|
||||
"913C21B860FE34D0423D140C4D7861ADC9EAD2EA","d_a_obj_TvCdlst.rel"
|
||||
"FEF293222015662D9E4525CC2B8A9638E4B4A04F","d_a_obj_twGate.rel"
|
||||
"C494055D634EC9A94883D195445197BD9E94AC6B","d_a_obj_udoor.rel"
|
||||
"7E25495502A308B1AE93AF29F1E676D3D3115DB3","d_a_obj_usaku.rel"
|
||||
"469FBAB3BB2516AA28664FC6D2DD9353EE41B9B6","d_a_obj_vground.rel"
|
||||
"269AC41E0D2FEAC375D60BB8002B347130362CD2","d_a_obj_volcball.rel"
|
||||
"7B2AFAE01C4AA78193A5D6E422D13F308005086D","d_a_obj_volcbom.rel"
|
||||
"2EA85C90BFD096D31083C2486176D56785BD8BA0","d_a_obj_warp_kbrg.rel"
|
||||
"468638E68C9835A2DAD0986202A877503BF96F3D","d_a_obj_warp_obrg.rel"
|
||||
"F4C57254D652C8659C04D7ADC5BE8D032060048B","d_a_obj_waterfall.rel"
|
||||
"18D78B492EFCD05EAFB54460858CCCFA401E882E","d_a_obj_waterGate.rel"
|
||||
"5C320FBB9A2EA5394F0E3433ADC2F0FB4FB4D4FB","d_a_obj_waterPillar.rel"
|
||||
"E25879F6D746E7C70D021FB6D881402B219F4279","d_a_obj_wchain.rel"
|
||||
"5D0571B7607F4909C43220960C435D2BE99EF055","d_a_obj_wdStick.rel"
|
||||
"851645238A9651D100BB904AB6BBC74F3AB053BF","d_a_obj_web0.rel"
|
||||
"8F205B1F60E93E77E2C6B87035BAC47B26C66705","d_a_obj_web1.rel"
|
||||
"CF15ACDB7386496EB2E4F166A4E6CB9F2E62CD9C","d_a_obj_well_cover.rel"
|
||||
"43D18BD91572169936926CF2E04591ACDAD7DEE2","d_a_obj_wflag.rel"
|
||||
"3E89070602385F10DF61A11E2516ED1EF65DD8CC","d_a_obj_wind_stone.rel"
|
||||
"D8086AEAA55F231764B070BDBDE35F0B0012C09D","d_a_obj_window.rel"
|
||||
"B81DBBD207AEA5E3F6214E01863BBAE40C75729E","d_a_obj_wood_pendulum.rel"
|
||||
"994ECF3B09ABB9E766CEE034D0C8F73BDBF19C30","d_a_obj_wood_statue.rel"
|
||||
"ECD038C7276C21C784C4707F21296C2559CC844D","d_a_obj_wsword.rel"
|
||||
"39DF1A7F35E5C79BF561FBD6EF9790D678CE7D47","d_a_obj_Y_taihou.rel"
|
||||
"2BDB911187A2E62EE0327158B7C20BF63AAAF4A1","d_a_obj_yel_bag.rel"
|
||||
"1C0AA0ED79E0427A0449A483478D63B6FA8BF320","d_a_obj_ystone.rel"
|
||||
"0D8D92229CA1492035038756E869488B2BD4912A","d_a_obj_zcloth.rel"
|
||||
"B527717E6D2B2BE7C7D60538784047A22ADA97AB","d_a_obj_zdoor.rel"
|
||||
"37341A5ACD5D74D48A92509E1C7ECEBBBF7A5F1A","d_a_obj_zra_freeze.rel"
|
||||
"2DADECA1A7F5EA8705771ECE7C0DECCBFCD2D411","d_a_obj_zra_rock.rel"
|
||||
"36930FF381E3B738573CB78EA7DA192EC8E2293F","d_a_obj_zraMark.rel"
|
||||
"966A7403702256D36C9B8F402ECF78113625C204","d_a_obj_zrTurara.rel"
|
||||
"5738A32F13A84F0F6638D22C6576D84B823F742E","d_a_obj_zrTuraraRock.rel"
|
||||
"40C8B5EB44C46211451A007FEEB63059A273AEA7","d_a_passer_mng.rel"
|
||||
"8CE019FD4C7543C03877F3ECA46E785F65673013","d_a_peru.rel"
|
||||
"28A407D07E870996909B526790A5ECA577C6EB18","d_a_ppolamp.rel"
|
||||
"A6940A39F5607E5774D3481E0882B54D5A6A3CAA","d_a_skip_2D.rel"
|
||||
"44704ED06BE87FBE3E0CCBF2FDA36012EDE71755","d_a_startAndGoal.rel"
|
||||
"3BD51AFD5FF82E4A897CC38C22B2B1F970875E0B","d_a_swBall.rel"
|
||||
"8094F348090A2D3F63CB1404E10C8E7CA46A0A2B","d_a_swLBall.rel"
|
||||
"F4A4638E454C817197B783395B481B3D113F7626","d_a_swTime.rel"
|
||||
"7049F905A4D7B8552931F6C047C99C31D76125CA","d_a_tag_arena.rel"
|
||||
"5DEB5EC63E7C78A1002E4D686799D03E1EEE0098","d_a_tag_assistance.rel"
|
||||
"A4638434A0319C493DF858D8E918966A275837B2","d_a_tag_bottle_item.rel"
|
||||
"F7748A94BC46E1134EAD99AA9C628D11A5D70435","d_a_tag_chgrestart.rel"
|
||||
"888EB195989DB928389A3E5F703CAF8DE6486EDC","d_a_tag_csw.rel"
|
||||
"396DB520690950691CB28F00582637FF9F6E18A8","d_a_tag_escape.rel"
|
||||
"235994000D7B1C9F5FDAB89536A820D84451FB82","d_a_tag_firewall.rel"
|
||||
"38B7C6274C9D409CAA25593C7F38CC55AD100F3A","d_a_tag_gra.rel"
|
||||
"7D08FB3103A415B7E7D55D8DE68D92E8E73FE121","d_a_tag_guard.rel"
|
||||
"37E1C451FF986AC9286112A5B1026767FC3B5217","d_a_tag_instruction.rel"
|
||||
"3D650786D9ECABBF016D2EF9FD6F56B51E40C9DB","d_a_tag_kago_fall.rel"
|
||||
"50D54005A44DA8F50CB44472DC98C9286FB68F22","d_a_tag_lightball.rel"
|
||||
"74144FFBC97B17313713CE6A9062ECF7FF8865F9","d_a_tag_lv5soup.rel"
|
||||
"F67B0243137AD5E5E14945F749C09513D747A872","d_a_tag_lv6CstaSw.rel"
|
||||
"11C2B2A9AC87E4918DBE2C5549D148B97DB0CCFB","d_a_tag_Lv6Gate.rel"
|
||||
"629445AE36F79CE718DCDA7CF170B6179FEA8925","d_a_tag_Lv7Gate.rel"
|
||||
"FBBDB788FE6A127F26EF0584461456E65A07D0C1","d_a_tag_Lv8Gate.rel"
|
||||
"AE37CB4F62A58688172161C02C147D3843CF9804","d_a_tag_mmsg.rel"
|
||||
"3D41EC3404F61E26C9C989091DBFFDC11165F1E5","d_a_tag_mwait.rel"
|
||||
"EADC18ABE78FF09EC5AB417956817D7381657A85","d_a_tag_myna_light.rel"
|
||||
"4906EADCBB44DC6570105172B5D9E109FF17B370","d_a_tag_myna2.rel"
|
||||
"15170A513C91307CE76644466ADA91190DE2B4F0","d_a_tag_pachi.rel"
|
||||
"753B3D4F6BBA0E91AA09208075831AB3D9924870","d_a_tag_poFire.rel"
|
||||
"1237A4A6F64940C9C43E51E2F10613B32936422F","d_a_tag_qs.rel"
|
||||
"4A411D05DD2C079CBA8D3DBE64FD4EA491B398AD","d_a_tag_ret_room.rel"
|
||||
"CC7B78D9A68C6D11B38F05ACE78D50E0ACFC3BA0","d_a_tag_river_back.rel"
|
||||
"FE50F79C70AB23E7CEF7FAE868646FFCFAACBD79","d_a_tag_rmbit_sw.rel"
|
||||
"6A3FFBE387423E5296B13A15620AEE90C676AB5A","d_a_tag_schedule.rel"
|
||||
"397A46BFA7597FA39EC9C4513994FF017FB5881A","d_a_tag_setBall.rel"
|
||||
"0E7AA61934F1D91D58A86A8062C23782C2FE41EA","d_a_tag_setrestart.rel"
|
||||
"E7A4EC71A670FF0CB15B3A04B76C854CE5699718","d_a_tag_shop_camera.rel"
|
||||
"CFF8F55EF5C365C58B81FD7AA5A003EDD90592C0","d_a_tag_shop_item.rel"
|
||||
"0096760CCB4E2BCEA7B66EB1B27CC930055CB910","d_a_tag_smk_emt.rel"
|
||||
"826FFF6A9493FBBDC6F48456CF7B72E509391B13","d_a_tag_spinner.rel"
|
||||
"0FA1241FEA4975F0F1AD2256FD74256FD3E461BD","d_a_tag_sppath.rel"
|
||||
"5AB974F71C49B42C5908BE1A7F0DC5AA8E9E8EA8","d_a_tag_ss_drink.rel"
|
||||
"6E8DBB2698825C796E070492EC3AF92A99A0245F","d_a_tag_stream.rel"
|
||||
"282178DFA0D90F418457EE32D950EF5A78FAB330","d_a_tag_theB_hint.rel"
|
||||
"3780DBB8F401BE0C399A759C964D8E28A022AB8C","d_a_tag_TWgate.rel"
|
||||
"12E2F139FC246511574F8B33207BA3E93549E705","d_a_tag_wara_howl.rel"
|
||||
"D5965FDB0659F08860CEDFC9EB20E1243F008915","d_a_tag_watchge.rel"
|
||||
"BD3DF27A66051325C551533B0D9023CBA6AD3E8C","d_a_tag_waterfall.rel"
|
||||
"CAADD767731433AB4D6DC9C39E1858273DA996DE","d_a_tag_wljump.rel"
|
||||
"CD7DC3140141D4F6A937175DA1FEC7F04190FB03","d_a_tag_yami.rel"
|
||||
"763ACFA67013F425C1CC3AA61E8106F2E87FEFF2","d_a_talk.rel"
|
||||
"CC5F11672A277D71FB2FFDD1ACB8A3B4E89F41C4","d_a_tboxSw.rel"
|
||||
"5D825D6ED7E73342B494CA6D48A35654D0229797","d_a_title.rel"
|
||||
"2F2E88881510F16895F65A959792712E3DF9E8BE","d_a_warp_bug.rel"
|
||||
```
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
@@ -0,0 +1 @@
|
||||
// ok
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user